摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;namespace Test{ delegate void MyDelegate(); delegate MyClosure Closure(); class Program { static void Main(string[] args) { Closure clo = new Closure(Fun); MyClosure mm = clo(); mm.Show(); mm.Add(); mm. 阅读全文
posted @ 2010-08-02 14:55 再快一点 阅读(161) 评论(0) 推荐(0) 编辑