Size3D.GetHashCode 方法

定義

傳回這個 Size3D 結構的雜湊程式碼。

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

傳回

這個 Size3D 結構的雜湊程式碼。

範例

下列範例示範如何取得 結構的 Size3D 雜湊程式碼。

// 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)

適用於