Gets or sets a value indicating whether field names should be converted to lowercase
for the header row.
Namespace: CleanCode.CsvProcessingAssembly: CleanCode.CsvProcessing (in CleanCode.CsvProcessing.dll) Version: 1.2.3.0 (1.2.03)
public bool FieldNamesLowercase { get; set; }
public bool FieldNamesLowercase { get; set; }
Public Property FieldNamesLowercase As Boolean
Get
Set
Public Property FieldNamesLowercase As Boolean
Get
Set
public:
property bool FieldNamesLowercase {
bool get ();
void set (bool value);
}
public:
property bool FieldNamesLowercase {
bool get ();
void set (bool value);
}
Field Value
true to force lowercase; otherwise,
false.
CSV files are generated with a header row where each field contains the name
and datatype of the column of the underlying
DataTable
in the format
name:type.
There seems to be a quirk in Excel 2000 (but not in Excel 2003)
that prevents it from reading a CSV file if the
name is all uppercase.
One may use this property to compensate for that.
The default is
false.