11 implementations of IsSigned
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
1219
static bool IBinaryIntegerParseAndFormatInfo<byte>.
IsSigned
=> false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
2088
static bool IBinaryIntegerParseAndFormatInfo<char>.
IsSigned
=> false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
2138
static bool IBinaryIntegerParseAndFormatInfo<Int128>.
IsSigned
=> true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1413
static bool IBinaryIntegerParseAndFormatInfo<short>.
IsSigned
=> true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1464
static bool IBinaryIntegerParseAndFormatInfo<int>.
IsSigned
=> true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1467
static bool IBinaryIntegerParseAndFormatInfo<long>.
IsSigned
=> true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1392
static bool IBinaryIntegerParseAndFormatInfo<sbyte>.
IsSigned
=> true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
2216
static bool IBinaryIntegerParseAndFormatInfo<UInt128>.
IsSigned
=> false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
1212
static bool IBinaryIntegerParseAndFormatInfo<ushort>.
IsSigned
=> false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
1283
static bool IBinaryIntegerParseAndFormatInfo<uint>.
IsSigned
=> false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
1284
static bool IBinaryIntegerParseAndFormatInfo<ulong>.
IsSigned
=> false;
10 references to IsSigned
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (10)
200
if ((i > TInteger.MaxDigitCount) || (i < number.DigitsCount) || (!TInteger.
IsSigned
&& number.IsNegative) || number.HasNonZeroTail)
223
if (!TInteger.
IsSigned
&& (newN < n))
232
if (TInteger.
IsSigned
)
414
bool overflow = !TInteger.
IsSigned
&& isNegative;
435
if (!TInteger.
IsSigned
)
451
if (!TInteger.
IsSigned
)
475
if (!TInteger.
IsSigned
)
494
if (!TInteger.
IsSigned
)
506
if (TInteger.
IsSigned
)
542
if (!TInteger.
IsSigned
)