7 references to NumberDecimalSeparatorTChar
System.Runtime.Numerics (7)
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>()); 1182FormatFixed(ref vlb, ref number, nMaxDigits, info.NumberGroupSizes(), info.NumberDecimalSeparatorTChar<TChar>(), info.NumberGroupSeparatorTChar<TChar>()); 1208vlb.Append(info.NumberDecimalSeparatorTChar<TChar>()); 1296vlb.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)))