SteamKit2.GameID.Equals C# (CSharp) 메소드

Equals() 공개 메소드

Determines whether the specified GameID is equal to this instance.
public Equals ( GameID gid ) : bool
gid GameID The to compare with this instance.
리턴 bool
        public bool Equals( GameID gid )
        {
            if ( ( object )gid == null )
                return false;

            return gameid.Data == gid.gameid.Data;
        }

Same methods

GameID::Equals ( System obj ) : bool