Ejemplo n.º 1
0
 public void AddRange(FastList <T> other)
 {
     AddRange(other, 0, other.Count);
 }
Ejemplo n.º 2
0
 public void Copy(FastList <T> other)
 {
     Clear();
     AddRange(other, 0, other.Count);
 }