摘要: 初学《C#4.0完全参考手册》,在第15章的15.3.3在匿名方法中使用外部变量的示例程序中遇到一个小问题(程序是没有问题的)。实例程序如下View Code 1 using System; 2 3 4 namespace 练习 5 { 6 delegate int countit(int end); 7 class Program 8 { 9 static int sd()10 {11 return 0;12 }13 static countit counter()14 ... 阅读全文
posted @ 2012-07-01 09:06 zscflying 阅读(162) 评论(0) 推荐(0) 编辑