K2Informatics.Erlnet.OtpErlangObject.Hash.valueOf C# (CSharp) Méthode

valueOf() public méthode

public valueOf ( ) : int
Résultat int
            public int valueOf()
            {
                return (int)abc[2];
            }

Usage Example

Exemple #1
0
 public override int GetHashCode()
 {
     if (hashCodeValue == 0)
     {
         OtpErlangObject.Hash hash = new OtpErlangObject.Hash(5);
         hash.combine(local.GetHashCode() + remote.GetHashCode());
         hashCodeValue = hash.valueOf();
     }
     return hashCodeValue;
 }
All Usage Examples Of K2Informatics.Erlnet.OtpErlangObject.Hash::valueOf