Size3D.GetHashCode Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Devuelve un código hash para esta estructura Size3D.
public:
override int GetHashCode();
public override int GetHashCode ();
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer
Devoluciones
Código hash para esta estructura Size3D.
Ejemplos
En el ejemplo siguiente se muestra cómo obtener el código hash de una Size3D estructura.
// 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)