BigInteger.IsEven 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示当前 BigInteger 对象的值是否是偶数。
public:
property bool IsEven { bool get(); };
public bool IsEven { get; }
member this.IsEven : bool
Public ReadOnly Property IsEven As Boolean
属性值
如果 BigInteger 对象的值是偶数,则为 true
;否则为 false
。
注解
此属性是一种便捷功能,用于指示值是否 BigInteger 均匀地被 2 除。 它等效于以下表达式:
value % 2 == 0;
value Mod 2 = 0
如果当前 BigInteger 对象的 BigInteger.Zero值为 ,则 属性返回 true
。