2013年6月11日
摘要: EventHandler 泛型委托// This example demonstrates the EventHandler<T> delegate.using System;using System.Collections.Generic;//---------------------------------------------------------public class MyEventArgs : EventArgs{ private string msg; public MyEventArgs( string messageData ) { msg = ... 阅读全文
posted @ 2013-06-11 12:02 武胜-阿伟 阅读(1063) 评论(0) 推荐(1)