04 2013 档案

Hashtable 类
摘要:Hashtable 类表示键/值对的集合,这些键/值对根据键的哈希代码进行组织。命名空间:System.Collections程序集:mscorlib(在 mscorlib.dll 中)using System;using System.Collections;class Example{ public static void Main() { // Create a new hash table. // Hashtable openWith = new Hashtable(); // Add some ele... 阅读全文

posted @ 2013-04-18 09:22 独孤求爱 阅读(179) 评论(0) 推荐(0)

DispatcherTimer 使用方法
摘要:命名空间: System.Windows.ThreadingDispatcherTimer 类:集成到按指定时间间隔和指定优先级处理的 Dispatcher 队列中的计时器。DispatcherTimer dispatcherTimer = new DispatcherTimer();DispatcherTimer.Tick 事件:超过计时器间隔时发生 dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick); dispatcherTimer.Interval = TimeSpan.FromMillise... 阅读全文

posted @ 2013-04-17 21:11 独孤求爱 阅读(722) 评论(0) 推荐(0)

导航