摘要:
StreamReader sr = null; StreamWriter sw = null; HttpWebResponse wr = null; string strpostdata = "__VIEWSTATE=%2FwEPDwUKMTc0MzU1MDk5NWRkmk%2BVYL... 阅读全文
摘要:
.Net开发中的多线程编程进行一个简单的总结不需要传递参数,也不需要返回参数 我们知道启动一个线程最直观的办法是使用Thread类,具体步骤如下:ThreadStart threadStart=new ThreadStart(Calculate);Thread thread=new Thread(threadStart); thread.Start(); public void Cal... 阅读全文