Thread CODE 代码

Thread t = new Thread(new ParameterizedThreadStart(fundemo));
                t.Start(i);

public void fundemo(object obj){}



原文地址:https://www.cnblogs.com/bycnboy/p/9150862.html