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));
        }