摘要: //定义委托 ; 参数为方法名称 public delegate void UpdateLabel(string label); //control.invoke(参数delegate)方法:在拥有此控件的基础窗口句柄的线程上执行指定的委托。 //timeElapsedInstring 是UpdateUI方法的参数。 //lbl... 阅读全文
posted @ 2019-09-27 11:09 enych 阅读(236) 评论(0) 推荐(0)
摘要: Hashtable ht = new Hashtable(); ht["标题"] = 10; ht["B"] = ht["标题"]; ht.Remove("标题"); 阅读全文
posted @ 2019-09-27 08:50 enych 阅读(503) 评论(0) 推荐(0)