BigInteger.IsEven プロパティ

定義

現在の BigInteger オブジェクトの値が偶数かどうかを示します。

public:
 property bool IsEven { bool get(); };
public bool IsEven { get; }
member this.IsEven : bool
Public ReadOnly Property IsEven As Boolean

プロパティ値

BigInteger オブジェクトの値が偶数の場合は true。それ以外の場合は false

注釈

このプロパティは、値が 2 で均等に割り切れるかどうかを BigInteger 示す便利な機能です。 これは、次の式と同じです。

value % 2 == 0;
value Mod 2 = 0

現在 BigInteger の オブジェクトの値が の場合、 プロパティは BigInteger.Zeroを返します true

適用対象