2012年3月19日

匿名方法,泛型委托,Lambda表达式

摘要: 匿名方法,泛型委托,Lambda表达式private void Button_Click_1(object sender, RoutedEventArgs e) { //匿名方式 //通过delegate关键字,声明一个没有方法名的方法体。 GetValue getValue = new GetValue (delegate(string a) { MessageBox.Show(a); } ); getValue("aaa"); } private void Button_Click_2(object sender, RoutedEventArgs e) { Func&l 阅读全文

posted @ 2012-03-19 22:10 项目管理之家 阅读(400) 评论(0) 推荐(0) 编辑

导航