Class CsvColumn
Represents a column in a Csv file.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
Namespace: IRM.Data
Assembly: IRM.dll
Syntax
public class CsvColumn
Constructors
CsvColumn()
Properties
DefaultValue
The default value for the column.
Declaration
public object DefaultValue { get; set; }
Property Value
Object
|
Format
The format string to be used on the column.
Declaration
public string Format { get; set; }
Property Value
String
|
FormatProvider
The FormatProvider to be used on the column.
Declaration
public IFormatProvider FormatProvider { get; set; }
Property Value
System.IFormatProvider
|
Name
Ordinal
The ordinal for the column.
Declaration
public int Ordinal { get; set; }
Property Value
System.Int32
|
ParserFunction
Special parser function to be used on the column.
Declaration
public Func<string, object> ParserFunction { get; set; }
Property Value
System.Func<String, Object>
|
Remarks
Is only used then the ParseToDefinedType is set to true.
Property
Gets or sets the PropertyInfo of the column.
Declaration
public PropertyInfo Property { get; set; }
Property Value
PropertyInfo
|
Type
The Type of the column.
Declaration
public Type Type { get; set; }
Property Value
System.Type
|