C# 线程的定义和使用

参考:https://www.cnblogs.com/Peter-Luo/p/Threading.html

public static void myStaticParamThreadMethod(Object obj)  
{  
    Console.WriteLine(obj);  
}  
 
static void Main(string[] args)  
{  
      Thread thread = new Thread(myStaticParamThreadMethod);  
      thread.Start("通过委托的参数传值");  
}
原文地址:https://www.cnblogs.com/pu369/p/9994423.html