5 references to NumberGroupSeparatorTChar
System.Runtime.Numerics (5)
src\runtime\src\libraries\Common\src\System\Number.Formatting.Common.cs (3)
557vlb.Append(info.NumberGroupSeparatorTChar<TChar>()); 590vlb.Append(info.NumberGroupSeparatorTChar<TChar>()); 905FormatFixed(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>(); 158else if (((styles & NumberStyles.AllowThousands) != 0) && ((state & StateDigits) != 0) && ((state & StateDecimal) == 0) && ((next = MatchChars(p, strEnd, groupSep)) != null || (parsingCurrency && (state & StateCurrency) == 0 && (next = MatchChars(p, strEnd, info.NumberGroupSeparatorTChar<TChar>())) != null)))