AcManager.Controls.ViewModels.RaceGridEntry.Same C# (CSharp) Méthode

Same() public méthode

public Same ( RaceGridEntry other ) : bool
other RaceGridEntry
Résultat bool
        public bool Same(RaceGridEntry other) {
            return GetType().Name == other.GetType().Name && Car == other.Car &&
                    CarSkin == other.CarSkin && Name == other.Name && Nationality == other.Nationality && AiLevel == other.AiLevel;
        }
    }