UniversalMarkdown.Parse.MarkdownBlock.Equals C# (CSharp) Метод

Equals() публичный Метод

Determines whether the specified object is equal to the current object.
public Equals ( object obj ) : bool
obj object The object to compare with the current object.
Результат bool
        public override bool Equals(object obj)
        {
            if (!base.Equals(obj) || !(obj is MarkdownBlock))
                return false;
            return Type == ((MarkdownBlock)obj).Type;
        }