Пример #1
0
 public static Elem <AddrPort> InsertNext(Elem <AddrPort> elem, AddrPort newAddrPort)
 {
     return(InsertNext(elem, new Elem <AddrPort>(newAddrPort)));
 }
Пример #2
0
 public bool Equals(AddrPort a)
 {
     return(a != null && this.Addr == a.Addr && this.Port == a.Port);
 }