SteamKit2.SteamID.operator C# (CSharp) Method

operator() public static method

Implements the operator ==.
public static operator ( ) : bool
return bool
        public static bool operator ==( SteamID a, SteamID b )
        {
            if ( System.Object.ReferenceEquals( a, b ) )
                return true;

            if ( ( ( object )a == null ) || ( ( object )b == null ) )
                return false;

            return a.steamid.Data == b.steamid.Data;
        }