GetHashCode() public method

public GetHashCode ( ) : int
return int
示例#1
0
文件: Delegate.cs 项目: ForNeVeR/pnet
 // Get a hash code for a delegate.
 public override int GetHashCode()
 {
     return(method.GetHashCode());
 }