System.Yaml.YamlNode.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

Serves as a hash function for a particular type. Hash code is calculated using Tag and Value properties.
public GetHashCode ( ) : int
Résultat int
        public override int GetHashCode()
        {
            // caches hash code
            if ( HashInvalid ) {
                HashCode = GetHashCodeCore();
                HashInvalid = false;
            }
            return HashCode;
        }