C#使用参数启动线程

示例

使用System.Threading;

class MainClass {
    static void Main() {
        var thread = new Thread(Secondary);
        thread.Start("SecondThread");
    }

    static void Secondary(object threadName) {
        System.Console.WriteLine("来自线程的Hello World: " + threadName);
    }
}