Size3D.GetHashCode メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この 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)
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET