嗚嗚喔學習筆記: C#-[泛型&List]

搜尋此網誌

2016年7月18日 星期一

C#-[泛型&List]

List<T> -> 可以放任何型態 -> List<int> -> List<String> ->List<Point>(自訂義Class也行的)
程式碼:
using System;
using System.Collections.Generic;

class TestClass
{
    static void Main()
    {
        var list = new List<Point>();

        list.Add(new Point { x=1, y=1 });
        list.Add(new Point { x=1, y=2 });
        foreach (var item in list)
        {
            Console.WriteLine("Point->({0},{1})", item.x, item.y);
        }

        Console.ReadLine();
    }

    struct Point
    {
        public int x;
        public int y;
    }
}
結果:

沒有留言:

張貼留言