13 references to NumberDecimalSeparatorTChar
System.Private.CoreLib (13)
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>());
1142
FormatFixed(ref vlb, ref number, nMaxDigits, info.NumberGroupSizes(), info.
NumberDecimalSeparatorTChar
<TChar>(), info.NumberGroupSeparatorTChar<TChar>());
1168
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
1256
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)))
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (5)
436
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
466
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
743
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
852
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
884
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
1326
ReadOnlySpan<TChar> decimalSeparator = info.
NumberDecimalSeparatorTChar
<TChar>();