System.Configuration.SettingValueElement.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( object settingValue ) : bool
settingValue object
Résultat bool
        public override bool Equals(object settingValue) {
            SettingValueElement u = settingValue as SettingValueElement;
            return (u != null && Object.Equals(u.ValueXml, ValueXml)); 
        }