7 references to NumberDecimalSeparatorTChar
System.Runtime.Numerics (7)
src\runtime\src\libraries\Common\src\System\Number.Formatting.Common.cs (5)
363
FormatFixed(ref vlb, ref number, nMaxDigits, null, info.
NumberDecimalSeparatorTChar
<TChar>(), null);
818
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
1182
FormatFixed(ref vlb, ref number, nMaxDigits, info.NumberGroupSizes(), info.
NumberDecimalSeparatorTChar
<TChar>(), info.NumberGroupSeparatorTChar<TChar>());
1208
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
1296
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
src\runtime\src\libraries\Common\src\System\Number.Parsing.Common.cs (2)
54
decSep = info.
NumberDecimalSeparatorTChar
<TChar>();
164
if (((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)))