YamlDotNet.RepresentationModel.YamlNode.Equals C# (CSharp) 메소드

Equals() 보호된 메소드

Provides a basic implementation of Object.Equals
protected Equals ( YamlNode other ) : bool
other YamlNode
리턴 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);
        }