SteamKit2.SteamID.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns a hash code for this instance.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return steamid.Data.GetHashCode();
        }

Usage Example

Example #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());
 }