6 references to NumberGroupSeparatorTChar
System.Private.CoreLib (6)
src\runtime\src\libraries\Common\src\System\Number.Formatting.Common.cs (4)
745
vlb.Append(info.
NumberGroupSeparatorTChar
<TChar>());
760
vlb.Append(info.
NumberGroupSeparatorTChar
<TChar>());
797
vlb.Append(info.
NumberGroupSeparatorTChar
<TChar>());
1142
FormatFixed(ref vlb, ref number, nMaxDigits, info.NumberGroupSizes(), info.NumberDecimalSeparatorTChar<TChar>(), info.
NumberGroupSeparatorTChar
<TChar>());
src\runtime\src\libraries\Common\src\System\Number.Parsing.Common.cs (2)
55
groupSep = info.
NumberGroupSeparatorTChar
<TChar>();
169
else if (((styles & NumberStyles.AllowThousands) != 0) && ((state & StateDigits) != 0) && ((state & StateDecimal) == 0) && ((nextIndex = MatchChars(value, index, groupSep)) >= 0 || (parsingCurrency && (state & StateCurrency) == 0 && (nextIndex = MatchChars(value, index, info.
NumberGroupSeparatorTChar
<TChar>())) >= 0)))