This documentation is archived and is not being maintained.
BigInteger::IsEven Property
Visual Studio 2010
Indicates whether the value of the current BigInteger object is an even number.
Assembly: System.Numerics (in System.Numerics.dll)
Property Value
Type: System::Booleantrue if the value of the BigInteger object is an even number; otherwise, false.
This property is a convenience feature that indicates whether a BigInteger value is evenly divisible by two. It is equivalent to the following expression:
[C#]
value % 2 == 0;
[Visual Basic]
value Mod 2 = 0
If the value of the current BigInteger object is BigInteger::Zero, the property returns true.
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: