Shawn

智慧本身就是好的。有一天我们都会死去,追求智慧的道路还会有人在走着。死掉以后的事我看不到,但在我活着的时候,想到这件事,心里就很高兴。 —— 王小波

导航

2013年8月30日 #

C#中的委托范例学习

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { public delegate void GreetingDelegate(string name); private static void GreetingPeople(string name, GreetingDelegate makingGreeting) { ... 阅读全文

posted @ 2013-08-30 16:36 ShawnZhou 阅读(164) 评论(0) 推荐(0)