1. 程式人生 > >WPF 學習筆記(二)

WPF 學習筆記(二)

打開 技術分享 cti 創建 com gen light string linq

在vs2010中使用快捷鍵alt+shift+c可以迅速的打開創建類對話框

技術分享圖片

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace lesson2
{
    class Animal
    {
        public void eat()
        {

        }
    }
}

  二、使用類List 並與數組進行比較

            //(1)數組缺點:長度固定
            //int[] nums = new int[3];
            //nums[0] = 0;
            //nums[2] = 2;
            //nums[1] = 1;
            //foreach (int i in nums)
            //{
            //    MessageBox.Show(i.ToString());
            //}
            //(2)使用集合類:動態數組
            List<int> list = new List<int>();
            list.Add(2);
            list.Add(1);
            list.Add(3);
            foreach (int i in list)
            {
                MessageBox.Show(i.ToString());
            }

  list常用方法:remove(); clear();

WPF 學習筆記(二)