摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 阅读全文
posted @ 2016-04-03 15:50 C/C++/Python/Java 阅读(775) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 阅读全文
posted @ 2016-04-02 21:35 C/C++/Python/Java 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 委托_Lambda表 阅读全文
posted @ 2016-04-02 11:12 C/C++/Python/Java 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 3 namespace 委托_匿名函数 4 { 5 class Program 6 { 7 /// 8 /// 声明委托: 委托的返回值类型 / 参数类型 / 参数个数 必须和被委托函数保持一致 9 /// 10 /// 参与运算的数据 ... 阅读全文
posted @ 2016-04-02 10:49 C/C++/Python/Java 阅读(1050) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 委托2 8 { 9 class Program 10 { 11 //... 阅读全文
posted @ 2016-04-02 10:36 C/C++/Python/Java 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace 委托_泛型 7 { 8 class Program 9 { 10 // 声明委托(无参,无返回值) 11 de... 阅读全文
posted @ 2016-03-31 16:54 C/C++/Python/Java 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace 索引器 7 { 8 class Program 9 { 10 static void 阅读全文
posted @ 2016-03-21 17:10 C/C++/Python/Java 阅读(466) 评论(0) 推荐(0) 编辑
摘要: WriteFile.cs Program.cs 阅读全文
posted @ 2016-03-20 19:57 C/C++/Python/Java 阅读(1193) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 多态 8 { 9 class Program 10 { 11 st... 阅读全文
posted @ 2016-03-19 11:34 C/C++/Python/Java 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Windows.Forms; 3 4 // 版本号: 1.0 5 [assembly:System.Reflection.AssemblyVersion("1.1")] 6 7 //命名空间 8 namespace UKE.Winform.Demo 9 { 10 // 窗口类 : 默认继承 System.... 阅读全文
posted @ 2016-03-18 17:29 C/C++/Python/Java 阅读(543) 评论(0) 推荐(0) 编辑