2010年1月9日土曜日

System.Collections.Generic Name SpaceのList Classを使用して、Listを定義してindexで要素を参照して配列であることを確認し、foreaceループで配列の要素をすべて出力してみる。

using System;
using System.Collections.Generic;


class MainClass
{
    static void Main()
    {
        // int型のListをインスタンス化
        List<int> list = new List<int>();


        // listに値を追加していく
        for (int i = 0; i < 10; i++)
        {
            list.Add(i);
        }
        /* indexで参照してlistが配列であることを確認
         * 出力値:4 */
        Console.WriteLine(list[5]);
        /* 配列listのすべての要素を出力
         * 出力値:0 1 2 3 4 5 6 7 8 9*/
        foreach (int n in list)
        {
            Console.Write("{0} ", n);
        }
        // 改行
        Console.WriteLine();
    }
}

0 コメント:

コメントを投稿