YamlDotNet.RepresentationModel.YamlNode.Equals C# (CSharp) Method

Equals() protected method

Provides a basic implementation of Object.Equals
protected Equals ( YamlNode other ) : bool
other YamlNode
return bool
        protected bool Equals(YamlNode other)
        {
            // Do not use the anchor in the equality comparison because that would prevent anchored nodes from being found in dictionaries.
            return SafeEquals(Tag, other.Tag);
        }