SteamKit2.GameID.operator C# (CSharp) Méthode

operator() public static méthode

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

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

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