摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 利用委托实现回调{ class Program { static void Main(st... 阅读全文
posted @ 2014-06-21 14:52
编程猴子
阅读(234)
评论(0)
推荐(0)
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text; using System.Web.UI.WebControls;namespace 回调{ class Program {... 阅读全文
posted @ 2014-06-21 14:45
编程猴子
阅读(178)
评论(0)
推荐(0)
摘要:
private void button1_Click(object sender, EventArgs e) { Say(); } [Obsolete("已过时,请调用SayHi替代")] public void Say... 阅读全文
posted @ 2014-06-21 14:36
编程猴子
阅读(186)
评论(0)
推荐(0)
摘要:
private void button1_Click(object sender, EventArgs e) { Type tDog = typeof(Dog); Type tCat = typeof(Cat); //... 阅读全文
posted @ 2014-06-21 14:34
编程猴子
阅读(149)
评论(0)
推荐(0)
摘要:
private void button1_Click(object sender, EventArgs e) { //获取当前运行 程序(应用程序域) 程序集 Assembly[] arrs = AppDomain.CurrentDomai... 阅读全文
posted @ 2014-06-21 14:32
编程猴子
阅读(142)
评论(0)
推荐(0)