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