PolicyStatement.GetHashCode 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得 PolicyStatement 物件的雜湊碼,其適合用於雜湊表這類的雜湊演算法和資料結構。
public:
override int GetHashCode();
public override int GetHashCode ();
[System.Runtime.InteropServices.ComVisible(false)]
public override int GetHashCode ();
override this.GetHashCode : unit -> int
[<System.Runtime.InteropServices.ComVisible(false)>]
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer
傳回
目前 PolicyStatement 物件的雜湊碼。
- 屬性
範例
下列程式碼範例示範如何使用 GetHashCode 方法來取得目前原則語句的雜湊碼。 此程式碼範例是針對 類別提供的較大範例的 PolicyStatement 一部分。
int hashCode = policyStatement->GetHashCode();
int hashCode = policyStatement.GetHashCode();
Dim hashCode As Integer = policyStatement.GetHashCode()
備註
相同許可權兩個實例的雜湊程式碼可能不同,因此不應該使用雜湊碼來比較兩 PolicyStatement 個物件。