Evidence.GetHashCode Metodo

Definizione

Ottiene un codice hash per l'oggetto Evidence adatto per l'uso in algoritmi di hash e in strutture di dati, come una tabella hash.

public:
 override int GetHashCode();
[System.Runtime.InteropServices.ComVisible(false)]
public override int GetHashCode ();
[<System.Runtime.InteropServices.ComVisible(false)>]
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer

Restituisce

Int32

Codice hash per l'oggetto Evidence corrente.

Attributi

Esempio

Nell'esempio di codice seguente viene illustrato l'uso del metodo GetHashCode. Questo esempio fa parte di un esempio più grande fornito per la Evidence classe.

Console.WriteLine(ControlChars.Lf & "Get the hashcode for the evidence.")
Console.WriteLine(("HashCode = " & myEvidence.GetHashCode().ToString()))
Console.WriteLine("\nGet the hashcode for the evidence.");
Console.WriteLine("HashCode = " + myEvidence.GetHashCode().ToString());
Console::WriteLine( "\nGet the hashcode for the evidence." );
Console::WriteLine( "HashCode = {0}", myEvidence->GetHashCode() );

Commenti

Il codice hash per due istanze della stessa evidenza potrebbe essere diverso, pertanto i codici hash non devono essere usati per confrontare due Evidence oggetti.

Si applica a