System.Yaml.YamlComplexNode.GetHashCodeCore C# (CSharp) 메소드

GetHashCodeCore() 보호된 메소드

Calculate hash code from YamlNode.Tag property and all child nodes. The result is cached.
protected GetHashCodeCore ( ) : int
리턴 int
        protected override int GetHashCodeCore()
        {
            return GetHashCodeCoreSub(0,
                                      new Dictionary<YamlNode, int>(
                                          TypeUtils.EqualityComparerByRef<YamlNode>.Default));
        }