摘要:
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. 阅读全文