摘要: c#中的partial关键字Partial: 这是C#2.0的新特性 Partial关键字起到把一个class分段组合作用,能用于多个接口或一个继承代码片断:namespace Com.TommyLib{ publicinterface A {void A_Fun1();void A_Fun2();... 阅读全文
posted @ 2014-06-08 20:04 coolsundy 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 第一种: static void Main() { object intList = MakeList(typeof(int), 1, 2, 3); object strList = MakeList(typeof(string), "sdfd", "fet"); //List foreach(o... 阅读全文
posted @ 2014-06-08 09:56 coolsundy 阅读(2618) 评论(0) 推荐(0) 编辑