Point.GetHashCode メソッド

定義

この Point のハッシュ コードを返します。

public:
 override int GetHashCode();
public override int GetHashCode ();
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer

戻り値

Int32

この Point 構造体のハッシュ コード。

次の例は、構造体のハッシュ コードを取得する方法を Point 示しています。

private int getHashCodeExample()
{
    
    Point point1 = new Point(10, 5);

    // Get the hashcode of a Point structure
    int returnHashCode = point1.GetHashCode();

    return returnHashCode;
}

適用対象