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