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