摘要:
using System;using System.ComponentModel;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Diagnostics;namespace ListViewVirtualMode{ public partial class Form1 : Form ... 阅读全文
摘要:
本文将对微软.Net开发中的多线程编程进行一个简单的总结。 不需要传递参数,也不需要返回参数 我们知道启动一个线程最直观的办法是使用Thread类,具体步骤如下: ThreadStart threadStart=new ThreadStart(Calculate);Thread thread=new Thread(threadStart); thread.Start(); pu... 阅读全文