API Reference
Class
CsvSaveOptions
Options controlling how CSV content is serialized.
Inheritance
- Object
- CsvSaveOptions
Constructors
public CsvSaveOptions() #Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public Char Delimiter { get; set; } #Gets or sets the field delimiter character. Default is ,.
public String NewLine { get; set; } #Gets or sets the newline sequence written between records. Default is NewLine.
public Boolean IncludeHeader { get; set; } #Gets or sets whether to include the header row when writing. Default is true.
public CultureInfo Culture { get; set; } #Gets or sets the culture used for formatting values. Defaults to InvariantCulture.
public Encoding Encoding { get; set; } #Gets or sets the text encoding used when writing to files. Defaults to UTF-8 without BOM when omitted.