7 references to NumberDecimalSeparatorTChar
System.Private.CoreLib (7)
src\libraries\Common\src\System\Number.Formatting.Common.cs (5)
181
FormatFixed(ref vlb, ref number, nMaxDigits, null, info.
NumberDecimalSeparatorTChar
<TChar>(), null);
603
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
897
FormatFixed(ref vlb, ref number, nMaxDigits, info.NumberGroupSizes(), info.
NumberDecimalSeparatorTChar
<TChar>(), info.NumberGroupSeparatorTChar<TChar>());
921
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
991
vlb.Append(info.
NumberDecimalSeparatorTChar
<TChar>());
src\libraries\Common\src\System\Number.Parsing.Common.cs (2)
52
decSep = info.
NumberDecimalSeparatorTChar
<TChar>();
151
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)))