1 write to _hasFieldsEnclosedInQuotes
Microsoft.Data.Analysis (1)
TextFieldParser.cs (1)
297
_hasFieldsEnclosedInQuotes
= value;
3 references to _hasFieldsEnclosedInQuotes
Microsoft.Data.Analysis (3)
TextFieldParser.cs (3)
294
get =>
_hasFieldsEnclosedInQuotes
;
1001
if (
_hasFieldsEnclosedInQuotes
&& _delimiters[i].IndexOf('"') > -1)
1044
if (token != string.Empty && (
_hasFieldsEnclosedInQuotes
&& (_textFieldType == FieldType.Delimited)) && string.Compare(token.Trim(), "\"", StringComparison.Ordinal) == 0)