Compartilhar via


Vector.GetHashCode Método

Definição

Retorna o código hash desse vetor.

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

Retornos

Int32

O código hash para essa instância.

Exemplos

O exemplo a seguir mostra como obter o código hash de um Vector.

private int getHashCodeExample()
{
    Vector vector1 = new Vector(20, 30);
    int returnHashCode = vector1.GetHashCode();

    return returnHashCode;
}

Aplica-se a