Quote Usage Enumeration
Enumerates the ways values may be quoted
when writing delimited text files.
Definition
Namespace: Numerics.NET.Data.Text
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
C#
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.3
public enum QuoteUsage
Members
AsNeeded | 0 | Values are quoted only when necessary. This is the default. |
AsNeededForColumnType | 1 | All values in a column are quoted when some possible values of the type of the column require it. |
Always | 2 | Values are always quoted. |
Never | 3 | Values are never quoted. Note that this may cause the resulting file to be invalid. |