CsvEscapeFormat
Represents the format that is used in a CSV file in order to escape field values / special symbols.
Definition
Fields
Unix style programs use backslashes for escaping both (field and record) separators. Backslash is escaped with a second backslash.
Backslash = 1
Some Unix style programs use backslashes for escaping field separators, but for escaping record separators can use \r\n instead of backslash. Backslash is escaped with a second backslash.
BackslashAlternative = 2
No symbols are escaped.
None = 0
Excel uses single or double quotes to embed escaped text. Single or double quotes are escaped with second single or double quotes.
Quotes = 3
Some files use a mixed escaping format - fields are embedded in quotes (Excel like), quotes (single or double) are escaped with backslash (Unix like). Backslash is escaped with a second backslash.
QuotesMixed = 4