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)
830
string? sNegative = value.
Sign
< 0 ? info.NegativeSign : null;
882
number.IsNegative = value.
Sign
< 0;
System\Numerics\BigInteger.cs (4)
973
ArgumentOutOfRangeException.ThrowIfNegative(exponent.
Sign
, nameof(exponent));
1229
/// If <paramref name="isUnsigned"/> is <c>true</c> and <see cref="
Sign
"/> is negative.
1273
/// <exception cref="OverflowException">If <paramref name="isUnsigned"/> is <c>true</c> and <see cref="
Sign
"/> is negative.</exception>
1325
/// <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 ||