7 references to NumberDecimalSeparatorTChar
System.Runtime.Numerics (7)
src\runtime\src\libraries\Common\src\System\Number.Formatting.Common.cs (5)
181
FormatFixed(ref vlb, ref number, nMaxDigits, null, info.
NumberDecimalSeparatorTChar
<TChar>(), null);
611
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
905
FormatFixed(ref vlb, ref number, nMaxDigits, info.NumberGroupSizes(), info.
NumberDecimalSeparatorTChar
<TChar>(), info.NumberGroupSeparatorTChar<TChar>());
929
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
999
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
src\runtime\src\libraries\Common\src\System\Number.Parsing.Common.cs (2)
54
decSep = info.
NumberDecimalSeparatorTChar
<TChar>();
153
else 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)))