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