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