Isop.Parse.ArgumentWithOptions.Equals C# (CSharp) Method

Equals() public method

public Equals ( ArgumentWithOptions other ) : bool
other ArgumentWithOptions
return bool
        public bool Equals(ArgumentWithOptions other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Description, Description) && Equals(other.Argument, Argument) && other.Required.Equals(Required);
        }

Same methods

ArgumentWithOptions::Equals ( object obj ) : bool