System.Yaml.YamlComplexNode.GetHashCodeCore C# (CSharp) Méthode

GetHashCodeCore() protected méthode

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