Enum EscapeMode
Specifies how to escape an occurance of of system characters, like the TextQualifier and Delimiter inside text qualified data.
Namespace: IRM.Data
Assembly: IRM.dll
Syntax
public enum EscapeMode
Backslash
An occurence of TextQualifier or Delimiter will be escaped by preceding it with a backslash character. This format is common in Unix type environments.
Doubled
An occurence of TextQualifier or Delimiter will be escaped by replacing it with two consecutive occurances of the same character. This is the format generally used for CSV in applications such as Excel.
Replace
An occurence of TextQualifier or Delimiter will be escaped by replacing it with the SystemCharacterReplacement