Point.GetHashCode Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Restituisce il codice hash per questo oggetto Point.
public:
override int GetHashCode();
public override int GetHashCode ();
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer
Restituisce
Codice hash per la struttura Point.
Esempio
Nell'esempio seguente viene illustrato come ottenere il codice hash di una Point struttura.
private int getHashCodeExample()
{
Point point1 = new Point(10, 5);
// Get the hashcode of a Point structure
int returnHashCode = point1.GetHashCode();
return returnHashCode;
}