public int CompareTo(servernetadr other) => _Ip.CompareTo(other._Ip) + _QueryPort.CompareTo(other._QueryPort) + _ConnectionPort.CompareTo(other._ConnectionPort);
 public bool Equals(servernetadr other) => (_Ip == other._Ip) && (_QueryPort == other._QueryPort) && (_ConnectionPort == other._ConnectionPort);