Invert.Core.GraphDesigner.ErrorInfo.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( ErrorInfo other ) : bool
other ErrorInfo
return bool
        protected bool Equals(ErrorInfo other)
        {
            return string.Equals(Identifier, other.Identifier) && string.Equals(Message, other.Message);
        }

Same methods

ErrorInfo::Equals ( object obj ) : bool