Class CsvFileCommon
Common base class for CSV reader and writer classes.
public abstract class CsvFileCommon : Disposable, IDisposable
- Inheritance
-
CsvFileCommon
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
CsvFileCommon()
protected CsvFileCommon()
Fields
SpecialChars
These are special characters in CSV files. If a column contains any of these characters, the entire column is wrapped in double quotes.
protected char[] SpecialChars
Field Value
- char[]
Properties
Delimiter
Gets/sets the character used for column delimiters.
public char Delimiter { get; set; }
Property Value
Quote
Gets/sets the character used for column quotes.
public char Quote { get; set; }