7 references to NumberDecimalSeparatorTChar
System.Private.CoreLib (7)
src\libraries\Common\src\System\Number.Formatting.Common.cs (5)
181FormatFixed(ref vlb, ref number, nMaxDigits, null, info.NumberDecimalSeparatorTChar<TChar>(), null); 603vlb.Append(info.NumberDecimalSeparatorTChar<TChar>()); 897FormatFixed(ref vlb, ref number, nMaxDigits, info.NumberGroupSizes(), info.NumberDecimalSeparatorTChar<TChar>(), info.NumberGroupSeparatorTChar<TChar>()); 921vlb.Append(info.NumberDecimalSeparatorTChar<TChar>()); 991vlb.Append(info.NumberDecimalSeparatorTChar<TChar>());
src\libraries\Common\src\System\Number.Parsing.Common.cs (2)
52decSep = info.NumberDecimalSeparatorTChar<TChar>(); 151else if (((styles & NumberStyles.AllowDecimalPoint) != 0) && ((state & StateDecimal) == 0) && ((next = MatchChars(p, strEnd, decSep)) != null || (parsingCurrency && (state & StateCurrency) == 0 && (next = MatchChars(p, strEnd, info.NumberDecimalSeparatorTChar<TChar>())) != null)))