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