摘要: C#:using System;using System.Collections.Generic;using System.Text;namespace Delegate { //定义委托,它定义了可以代表的方法的类型 public delegate void welcomeDelegate(string name); class Program { private static void EnglishGreeting(string name) { Console.WriteLine("Hello, " + nam... 阅读全文
posted @ 2014-01-10 17:41 skykang 阅读(409) 评论(0) 推荐(0) 编辑