c#列舉與陣列初始化及使用小記

wisdomone1發表於2012-07-05
//客戶端
    class Program
    {
       
        static void Main(string[] args)
        {
          //學習格式字串的用法
            string[] str = new string[] { "a", "b" };
            string[] str1 = new string[2] { "c","d"};
            string[] str2 ={ "e","g"};

            //呼叫testenum列舉
            
            //要使用列舉,須先定義一個列舉型別的變數
            testenum enum1;
            enum1 = testenum.first;//為列舉型別的變數進行初始化值,是透過列舉型別的元素進提供
            Console.WriteLine("列舉型別testenum變數的值是:{0}", enum1);

            //if (enum1==testenum.first) //一般使用列舉型別變數==列舉型別.列舉型別的元素
            if ((int)enum1==1) //列舉變數顯式轉化為列舉元素對應的值
            {
                Console.WriteLine("haha");
            }
            Console.ReadKey();
        }

        //定義列舉型別
        public enum testenum:int //列舉預設型別是int
        {
            first=1,
            second=2,
            third=3
        }
        
    }

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-734719/,如需轉載,請註明出處,否則將追究法律責任。

相關文章