public static Elem <AddrPort> InsertNext(Elem <AddrPort> elem, AddrPort newAddrPort) { return(InsertNext(elem, new Elem <AddrPort>(newAddrPort))); }
public bool Equals(AddrPort a) { return(a != null && this.Addr == a.Addr && this.Port == a.Port); }