摘要:
using System; using System.Xml; using System.Configuration; namespace EmanUtils { /**//// /// 读配置文件的操作 /// Config操作类 /// public class ConfigHelper { public ConfigHel... 阅读全文
摘要:
很多时候写windows程序都需要结合多线程,在.net中用如下得代码来创建并启动一个新的线程。 public void ThreadProc(); Thread thread = new Thread( new ThreadStart( ThreadProc ) ); thread.IsBackground = true; thread.Start(); 但是很多时候,在新的线程中,我们需要与U... 阅读全文