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)
2047static bool IBinaryIntegerParseAndFormatInfo<char>.IsSigned => false;
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
2132static 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)
2167static 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)
157if ((i > TInteger.MaxDigitCount) || (i < number.DigitsCount) || (!TInteger.IsSigned && number.IsNegative) || number.HasNonZeroTail) 180if (!TInteger.IsSigned && (newN < n)) 189if (TInteger.IsSigned) 369bool overflow = !TInteger.IsSigned && isNegative; 390if (!TInteger.IsSigned) 406if (!TInteger.IsSigned) 430if (!TInteger.IsSigned) 449if (!TInteger.IsSigned) 461if (TInteger.IsSigned) 497if (!TInteger.IsSigned)