GetHashCode() public method

Returns a hash code for this instance.
public GetHashCode ( ) : int
return int
Exemplo n.º 1
0
 /// <summary>
 /// Hash code of the lobby member. Only the SteamID of the lobby member is taken into account.
 /// </summary>
 /// <returns>The hash code of this lobby member.</returns>
 public override int GetHashCode()
 {
     return(SteamID.GetHashCode());
 }