6 references to PositiveSignTChar
System.Private.CoreLib (6)
src\libraries\Common\src\System\Number.Formatting.Common.cs (1)
948vlb.Append(info.PositiveSignTChar<TChar>());
src\libraries\Common\src\System\Number.Parsing.Common.cs (3)
67if (((styles & NumberStyles.AllowLeadingSign) != 0) && (state & StateSign) == 0 && ((next = MatchChars(p, strEnd, info.PositiveSignTChar<TChar>())) != null || ((next = MatchNegativeSignChars(p, strEnd, info)) != null && (number.IsNegative = true)))) 176if ((next = MatchChars(p, strEnd, info.PositiveSignTChar<TChar>())) != null) 238if ((styles & NumberStyles.AllowTrailingSign) != 0 && ((state & StateSign) == 0) && ((next = MatchChars(p, strEnd, info.PositiveSignTChar<TChar>())) != null || (((next = MatchNegativeSignChars(p, strEnd, info)) != null) && (number.IsNegative = true))))
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (2)
308ReadOnlySpan<TChar> positiveSign = info.PositiveSignTChar<TChar>(); 984var positiveSign = info.PositiveSignTChar<TChar>();