blob: 87ae77516e96cfc9a1313ce0fbb19fcdc951b667 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Collections.Concurrent;
using System.Threading.Tasks;
namespace Tango.CSV
{
/// <summary>
/// Represents an attribute for decorating properties to exclude from the CSV file.
/// </summary>
/// <seealso cref="System.Attribute" />
public class CsvIgnoreAttribute : Attribute
{
public override string ToString()
{
return "Ignore Property";
}
}
}
|