次の方法で共有


OperationInfo.GetHashCode メソッド

定義

現在の OperationInfo のハッシュ コードを返します。

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

戻り値

Int32

このインスタンスのハッシュ コード。

GetHashCode メソッドの使用方法を次の例に示します。

OperationInfo info = new OperationInfo();
info.Name = "ProcessData";
int code = info.GetHashCode();
Dim info As New OperationInfo()
info.Name = "ProcessData"
Dim code = info.GetHashCode()

適用対象