This documentation is archived and is not being maintained.
BigInteger::Sign Property
Visual Studio 2010
Gets a number that indicates the sign (negative, positive, or zero) of the current BigInteger object.
Assembly: System.Numerics (in System.Numerics.dll)
Property Value
Type: System::Int32A number that indicates the sign of the BigInteger object, as shown in the following table.
Number | Description |
|---|---|
-1 | The value of this object is negative. |
0 | The value of this object is 0 (zero). |
1 | The value of this object is positive. |
The Sign property is equivalent to the Math::Sign method for the primitive numeric types.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: