public bool Equals(ActorRef other)
 {
     return(_locationIp.Equals(other._locationIp) && _locationPort == other._locationPort && Key.Equals(other.Key));
 }
 public bool Equals(ActorProxyKey other)
 {
     return(ActorKey.Equals(other.ActorKey) && NetContractId == other.NetContractId);
 }