13 references to NumberDecimalSeparatorTChar
System.Private.CoreLib (13)
src\runtime\src\libraries\Common\src\System\Number.Formatting.Common.cs (5)
363FormatFixed(ref vlb, ref number, nMaxDigits, null, info.NumberDecimalSeparatorTChar<TChar>(), null); 818vlb.Append(info.NumberDecimalSeparatorTChar<TChar>()); 1142FormatFixed(ref vlb, ref number, nMaxDigits, info.NumberGroupSizes(), info.NumberDecimalSeparatorTChar<TChar>(), info.NumberGroupSeparatorTChar<TChar>()); 1168vlb.Append(info.NumberDecimalSeparatorTChar<TChar>()); 1256vlb.Append(info.NumberDecimalSeparatorTChar<TChar>());
src\runtime\src\libraries\Common\src\System\Number.Parsing.Common.cs (2)
54decSep = info.NumberDecimalSeparatorTChar<TChar>(); 164if (((styles & NumberStyles.AllowDecimalPoint) != 0) && ((state & StateDecimal) == 0) && ((nextIndex = MatchChars(value, index, decSep)) >= 0 || (parsingCurrency && (state & StateCurrency) == 0 && (nextIndex = MatchChars(value, index, info.NumberDecimalSeparatorTChar<TChar>())) >= 0)))
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (5)
436vlb.Append(info.NumberDecimalSeparatorTChar<TChar>()); 466vlb.Append(info.NumberDecimalSeparatorTChar<TChar>()); 743vlb.Append(info.NumberDecimalSeparatorTChar<TChar>()); 852vlb.Append(info.NumberDecimalSeparatorTChar<TChar>()); 884vlb.Append(info.NumberDecimalSeparatorTChar<TChar>());
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
1326ReadOnlySpan<TChar> decimalSeparator = info.NumberDecimalSeparatorTChar<TChar>();