Ejemplo n.º 1
0
 public NCollection_List <T> Assign(NCollection_List <T> theOther)
 {
     if (ReferenceEquals(this, theOther))
     {
         return(this);
     }
     Clear();
     AddRange(theOther);
     return(this);
 }
Ejemplo n.º 2
0
 public NCollection_List(NCollection_List <T> theOther)
 {
     Assign(theOther);
 }