Point.GetHashCode Méthode

Définition

Retourne le code de hachage pour ce Point.

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

Retours

Int32

Code de hachage pour cette structure Point.

Exemples

L’exemple suivant montre comment obtenir le code de hachage d’une Point structure.

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

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

    return returnHashCode;
}

S’applique à