11 references to Sign
System.Formats.Cbor (1)
System\Formats\Cbor\Writer\CborWriter.Tag.cs (1)
94
bool isUnsigned = value.
Sign
>= 0;
System.Runtime.Numerics (6)
System\Number.BigInteger.cs (2)
825
string? sNegative = value.
Sign
< 0 ? info.NegativeSign : null;
877
number.IsNegative = value.
Sign
< 0;
System\Numerics\BigInteger.cs (4)
978
ArgumentOutOfRangeException.ThrowIfNegative(exponent.
Sign
, nameof(exponent));
1234
/// If <paramref name="isUnsigned"/> is <c>true</c> and <see cref="
Sign
"/> is negative.
1278
/// <exception cref="OverflowException">If <paramref name="isUnsigned"/> is <c>true</c> and <see cref="
Sign
"/> is negative.</exception>
1330
/// <exception cref="OverflowException">If <paramref name="isUnsigned"/> is <c>true</c> and <see cref="
Sign
"/> is negative.</exception>
System.Security.Cryptography (4)
src\libraries\Common\src\System\Security\Cryptography\DSAKeyFormatHelper.cs (4)
58
if (parms.P.
Sign
< 0 ||
59
parms.Q.
Sign
< 0 ||
121
if (parms.P.
Sign
< 0 ||
122
parms.Q.
Sign
< 0 ||