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 { /// /// Represents an attribute for decorating properties to exclude from the CSV file. /// /// public class CsvIgnoreAttribute : Attribute { public override string ToString() { return "Ignore Property"; } } }