BigInteger.IsOne 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示目前 BigInteger 物件的值是否為 One。
public:
property bool IsOne { bool get(); };
public bool IsOne { get; }
member this.IsOne : bool
Public ReadOnly Property IsOne As Boolean
屬性值
如果 BigInteger 物件的值為 One,則為 true
,否則為 false
。
備註
這個屬性提供比使用其他比較更佳的效能,例如 thisBigInteger.Equals(BigInteger.One)
。