
.NET3.0&3.5
ggw128
强烈的求知欲,思维活跃、敏锐,为人诚实热情
展开
-
使用强大的反射取消事件的订阅。
using System; using System.Collections; using System.Reflection; //Delegate delegate void UpdateDelegate(); //Subject class Subject转载 2011-08-02 23:53:31 · 489 阅读 · 0 评论 -
C# 方法中的this参数--.NET3.5类型的扩展方法
先看下面的代码: public static class StringExtension { public staticvoid Foo(this string s) { Console.WriteLine("Foo invoked for {0}",s);转载 2011-08-14 15:48:14 · 1135 阅读 · 0 评论