ZeroInstall.Store.Config.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( Config other ) : bool
other Config
Résultat bool
        public bool Equals(Config other)
        {
            if (other == null) return false;
            return _metaData.All(property => property.Value.Value == other.GetOption(property.Key));
        }

Same methods

Config::Equals ( object obj ) : bool