BF2Statistics.Gamespy.GpcmClient.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( object Obj ) : bool
Obj object
Результат 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;
        }