4 references to PositiveSignTChar
System.Runtime.Numerics (4)
src\runtime\src\libraries\Common\src\System\Number.Formatting.Common.cs (1)
956
vlb.Append(info.
PositiveSignTChar
<TChar>());
src\runtime\src\libraries\Common\src\System\Number.Parsing.Common.cs (3)
69
if (((styles & NumberStyles.AllowLeadingSign) != 0) && (state & StateSign) == 0 && ((next = MatchChars(p, strEnd, info.
PositiveSignTChar
<TChar>())) != null || ((next = MatchNegativeSignChars(p, strEnd, info)) != null && (number.IsNegative = true))))
178
if ((next = MatchChars(p, strEnd, info.
PositiveSignTChar
<TChar>())) != null)
240
if ((styles & NumberStyles.AllowTrailingSign) != 0 && ((state & StateSign) == 0) && ((next = MatchChars(p, strEnd, info.
PositiveSignTChar
<TChar>())) != null || (((next = MatchNegativeSignChars(p, strEnd, info)) != null) && (number.IsNegative = true))))