【C#】繰り返し処理の書き方~while/for/foreach~

while

List<string> stations = new List<string>(){
    "東京",
    "品川",
    "新横浜"
};

int cnt = 0;
while (cnt < stations.Count) {
    Console.WriteLine(stations[cnt]);
    cnt++;
}

// 東京
// 品川
// 新横浜

for

List<string> stations = new List<string>(){
    "東京",
    "品川",
    "新横浜"
};

for (int cnt = 0; cnt < stations.Count; cnt++) {
    Console.WriteLine(stations[cnt]);
}

// 東京
// 品川
// 新横浜

foreach

List<string> stations = new List<string>(){
    "東京",
    "品川",
    "新横浜"
};

foreach (string station in stations) {
    Console.WriteLine(station);
}

// 東京
// 品川
// 新横浜

以上になります。
お読み頂き、ありがとうございました。


おだねこ

32歳のSE、嫁と猫3匹と暮らしています。
PHP(Laravel)、MySQL、Excel(VBA)をよく使います。
最近、猫のYouTubeを始めました。

Follow me!