System.Yaml.YamlComplexNode.GetHashCodeCore C# (CSharp) Method

GetHashCodeCore() protected method

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