Emveepee.Widgets.ProfileConfiguration.Equals C# (CSharp) Method

Equals() public method

public Equals ( object o ) : bool
o object
return bool
        public override bool Equals(object o)
        {
            if (o is ProfileConfiguration) {
                ProfileConfiguration c = o as ProfileConfiguration;
                return TargetPath == c.TargetPath && Mode == c.Mode && StartEnabled == c.StartEnabled;
            } else
                return false;
        }