DelimitedTextSaveOptions

DelimitedTextSaveOptions()

This parameterless constructor creates a new instance of DelimitedTextSaveOptions with a semicolon (;) default separator (can be modified then through Separator property)

public DelimitedTextSaveOptions()

See Also


DelimitedTextSaveOptions(string)

Creates an instance of options class for delimited text with mandatory separator (delimiter)

public DelimitedTextSaveOptions(string separator)
Parameter Type Description
separator String String separator (delimiter), that cannot be NULL or empty

Exceptions

exception condition
ArgumentException Is thrown when specxified separator is a null or empty string

See Also