AllocNode.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int
    public override int GetHashCode()
    {
        int h = type ^ bt_len;

        for (int i = 0; i < bt_len; i ++) {
            h ^= bt [i];
            h *= 31;
        }

        return h;
    }