コレクション

[C#] Listを生成する

2021年7月11日

Listを生成するサンプルです。

サンプル

例1)List<int>を生成する

using System.Collections.Generic;

List<int> list = new List<int>();

例2)List<string>を生成する

using System.Collections.Generic;

List<string> list = new List<string>();

例3)Listの生成と同時に要素もセットする

using System.Collections.Generic;

List<string> list
 = new List<string>(){"札幌", "東京", "名古屋", "大阪", "福岡"};

備考

  • List型は要素を順番に管理するコレクション型で、コレクション型では一番よく使用されます。

関連記事

-コレクション
-