using System; using System.Collections.ObjectModel; class Sample { static void Main() { Collection<int> col = new Collection<int>(); // 要素の追加 col.Add(0); col.Add(1); col.Add(2); col.Add(3); col.Add(4); Print(col); // 要素の削除 col.Remove(1); col.Remove(3); Print(col); // 特定の位置にある要素を削除 col.RemoveAt(1); Print(col); // 特定の位置にある要素を変更 col[0] = 5; Print(col); // 特定の位置に要素を挿入 col.Insert(1, 6); Print(col); //
Note This content is reprinted by permission of Pearson Education, Inc. from Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries, 2nd Edition. That edition was published in 2008, and the book has since been fully revised in the third edition. Some of the information on this page may be out-of-date. Any type designed specifically to manipulate a group of objec
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く