11 implementations of IsSigned
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
1203static bool IBinaryIntegerParseAndFormatInfo<byte>.IsSigned => false;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
2028static bool IBinaryIntegerParseAndFormatInfo<char>.IsSigned => false;
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
2127static bool IBinaryIntegerParseAndFormatInfo<Int128>.IsSigned => true;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1395static bool IBinaryIntegerParseAndFormatInfo<short>.IsSigned => true;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1461static bool IBinaryIntegerParseAndFormatInfo<int>.IsSigned => true;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1464static bool IBinaryIntegerParseAndFormatInfo<long>.IsSigned => true;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1358static bool IBinaryIntegerParseAndFormatInfo<sbyte>.IsSigned => true;
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
2162static bool IBinaryIntegerParseAndFormatInfo<UInt128>.IsSigned => false;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
1210static bool IBinaryIntegerParseAndFormatInfo<ushort>.IsSigned => false;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
1255static bool IBinaryIntegerParseAndFormatInfo<uint>.IsSigned => false;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
1248static bool IBinaryIntegerParseAndFormatInfo<ulong>.IsSigned => false;
10 references to IsSigned
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (10)
123if ((i > TInteger.MaxDigitCount) || (i < number.DigitsCount) || (!TInteger.IsSigned && number.IsNegative) || number.HasNonZeroTail) 146if (!TInteger.IsSigned && (newN < n)) 155if (TInteger.IsSigned) 335bool overflow = !TInteger.IsSigned && isNegative; 356if (!TInteger.IsSigned) 372if (!TInteger.IsSigned) 396if (!TInteger.IsSigned) 415if (!TInteger.IsSigned) 427if (TInteger.IsSigned) 463if (!TInteger.IsSigned)