コード例 #1
0
ファイル: BEOCollection.cs プロジェクト: serialize/LiquidNET
 public void Add(BEOCollection collection)
 {
     _List.InsertRange(_List.Count, collection.List);
 }
コード例 #2
0
ファイル: BEOCollection.cs プロジェクト: serialize/LiquidNET
 public void InsertRange(int index, BEOCollection collection)
 {
     _List.InsertRange(index, collection.List);
 }