码迷,mamicode.com
首页 > Windows程序 > 详细

C#对象初始或器-Chapter3 P38

时间:2015-10-22 14:13:09      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

 

 

 

  protected string GetMessage()
        {
            //如何构造和初始化泛型集合库中的一个数组和两个类。
            Product myProduct = new Product{ProductID=100,Name="Kayak",Description ="A boat for one person",Price=275M,Category="Watersports"};
            return String.Format("Category:{0}", myProduct.Category);
            string[] stringArray = { "apple", "orange", "plum" };
            List<int> intList = new List<int> { 10, 20, 30, 40 };
            Dictionary<string, int> myDict = new Dictionary<string, int> { { "apple", 10 }, { "orange", 20 }, { "plum", 30 } };
            return String.Format("fruit:{0}", (object)stringArray[1]);
        }

 

C#对象初始或器-Chapter3 P38

标签:

原文地址:http://www.cnblogs.com/CandiceW/p/4900580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!