11 references to Sign
System.Formats.Cbor (1)
System\Formats\Cbor\Writer\CborWriter.Tag.cs (1)
94bool isUnsigned = value.Sign >= 0;
System.Runtime.Numerics (6)
System\Number.BigInteger.cs (2)
830string? sNegative = value.Sign < 0 ? info.NegativeSign : null; 882number.IsNegative = value.Sign < 0;
System\Numerics\BigInteger.cs (4)
973ArgumentOutOfRangeException.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)
58if (parms.P.Sign < 0 || 59parms.Q.Sign < 0 || 121if (parms.P.Sign < 0 || 122parms.Q.Sign < 0 ||