AcManager.Tools.Managers.Online.ServerEntry.CarEntry.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( CarEntry other ) : bool
other CarEntry
return bool
            protected bool Equals(CarEntry other) {
                return Equals(_availableSkin, other._availableSkin) && CarObject.Equals(other.CarObject) && Total == other.Total && Available == other.Available;
            }

Same methods

ServerEntry.CarEntry::Equals ( object obj ) : bool