Artemis.Profiles.ProfileModel.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( ProfileModel other ) : bool
other ProfileModel
return bool
        protected bool Equals(ProfileModel other)
        {
            return string.Equals(Name, other.Name) &&
                   string.Equals(KeyboardSlug, other.KeyboardSlug) &&
                   string.Equals(GameName, other.GameName);
        }

Same methods

ProfileModel::Equals ( object obj ) : bool