摘要:用申明好的delegate函数来申明event,即函数指针list。 public event ChangedEventHandler Changed; 如果event需要传递数据,则要在触发事件的地方写一个从EventArgs继承过来的类,并新建实例,在其中写好需要传递的数据,然后作为那个e传递出去。 在需要被触发的地方,用类似这个: public EventListener(ListWit...
阅读全文
摘要:从第一次用C#到现在也有一年半多了,但.net到底是什么,这个定义还蛮精辟的。 Probably the best way to think of .NET is as a big control system with two key elements. First is the .NET framework class library. Second, and the core of .NE...
阅读全文