Padding.GetHashCode 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
產生目前 Padding 的雜湊程式碼。
public:
override int GetHashCode();
public override int GetHashCode ();
public override readonly int GetHashCode ();
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer
傳回
32 位元帶正負號的整數雜湊碼。
備註
方法 GetHashCode 會使用 Right 、 LeftTop 和 Bottom 值來產生代表目前 Padding 的 32 位雜湊程式碼。
雜湊碼是對應至物件值的數位, (因此具有相同值的兩個物件應該產生相同的雜湊程式碼) 。 雜湊碼可用來排序和儲存物件的集合。 例如, System.Collections.Hashtable 表示根據索引鍵雜湊碼組織之索引鍵和值組的集合。
如需雜湊碼和雜湊函式的詳細資訊,請參閱 Object.GetHashCode 方法。