コード例 #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);
 }