5 references to NumberGroupSeparatorTChar
System.Private.CoreLib (5)
src\libraries\Common\src\System\Number.Formatting.Common.cs (3)
549vlb.Append(info.NumberGroupSeparatorTChar<TChar>()); 582vlb.Append(info.NumberGroupSeparatorTChar<TChar>()); 897FormatFixed(ref vlb, ref number, nMaxDigits, info.NumberGroupSizes(), info.NumberDecimalSeparatorTChar<TChar>(), info.NumberGroupSeparatorTChar<TChar>());
src\libraries\Common\src\System\Number.Parsing.Common.cs (2)
53groupSep = info.NumberGroupSeparatorTChar<TChar>(); 156else 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)))