Size3D.GetHashCode Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Vrátí kód hash pro tuto Size3D strukturu.
public:
override int GetHashCode();
public override int GetHashCode ();
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer
Návraty
Kód hash pro tuto Size3D strukturu.
Příklady
Následující příklad ukazuje, jak získat kód Size3D hash struktury.
// Gets the hashcode of a Size3D Structure
Size3D size1 = new Size3D(2, 4, 6);
int sizeHashcode;
sizeHashcode = size1.GetHashCode();
// Displaying Results
resultType = "int";
syntaxString = "sizeHashcode = size1.GetHashCode;";
operationString = "Getting the hashcode of size1";
ShowResults(sizeHashcode.ToString(), syntaxString, resultType, operationString);
' Gets the hashcode of a Size3D Structure
Dim size1 As New Size3D(2, 4, 6)
Dim sizeHashcode As Integer
sizeHashcode = size1.GetHashCode()
' Displaying Results
resultType = "int"
syntaxString = "sizeHashcode = size1.GetHashCode"
operationString = "Getting the hashcode of size1"
ShowResults(sizeHashcode.ToString(), syntaxString, resultType, operationString)