6 references to PositiveSignTChar
System.Private.CoreLib (6)
src\libraries\Common\src\System\Number.Formatting.Common.cs (1)
948
vlb.Append(info.
PositiveSignTChar
<TChar>());
src\libraries\Common\src\System\Number.Parsing.Common.cs (3)
67
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))))
176
if ((next = MatchChars(p, strEnd, info.
PositiveSignTChar
<TChar>())) != null)
238
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))))
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (2)
308
ReadOnlySpan<TChar> positiveSign = info.
PositiveSignTChar
<TChar>();
984
var positiveSign = info.
PositiveSignTChar
<TChar>();