BF2Statistics.Gamespy.GpcmClient.Equals C# (CSharp) Method

Equals() public method

public Equals ( object Obj ) : bool
Obj object
return bool
        public override bool Equals(object Obj)
        {
            if (Obj is GpcmClient)
            {
                GpcmClient Compare = Obj as GpcmClient;
                return (Compare.PlayerId == this.PlayerId || Compare.PlayerNick == this.PlayerNick);
            }

            return false;
        }