Akka.Cluster.Reachability.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

public GetHashCode ( ) : int
Результат int
        public override int GetHashCode()
        {
            return _versions.GetHashCode();
        }

Usage Example

Пример #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         var hash = 17;
         hash = hash * 23 + _reachability.GetHashCode();
         return(hash);
     }
 }