6 references to NumberGroupSeparatorTChar
System.Private.CoreLib (6)
src\runtime\src\libraries\Common\src\System\Number.Formatting.Common.cs (4)
745vlb.Append(info.NumberGroupSeparatorTChar<TChar>()); 760vlb.Append(info.NumberGroupSeparatorTChar<TChar>()); 797vlb.Append(info.NumberGroupSeparatorTChar<TChar>()); 1142FormatFixed(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)
55groupSep = info.NumberGroupSeparatorTChar<TChar>(); 169else 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)))