c#建立带参数的线程

一、无参数线程的建立 Thread thread = new Thread(new ThreadStart(showmessage)); thread.Start();  private void showmessage() {      Console.WriteLine("hello world"); } 二、带一个参数的线程 使用ParameterizedThreadStart,调用 Sys
相关文章
相关标签/搜索