//宣告
List<string> Items = new List<string>();

//塞值
Items.Add("ABC");
Items.Add("DEF");
Items.Add("GIH");

//傳給另一個變數
List<string> ItemsBackup = new List<string>();
ItemsBackup = Items.ToArray();

//自訂List
public class myListItem
{
    public string Name { get; set; }
    public int Age { get; set; }       
}
//宣告
List<myListItem> Items = new List<myListItem>();
//塞值
Items.Add(new myListItem()
{
	Name = "Annie",
	Age = 18,
});

arrow
arrow
    文章標籤
    c#
    全站熱搜
    創作者介紹
    創作者 伊 的頭像

    伊のspace~芳香精油*美容保養*程式設計

    伊 發表在 痞客邦 留言(0) 人氣()