下述法典很常见:
Work w = new Work();
w.Data = 42;
threadDelegate = new ThreadStart(w.DoMoreWork);
newThread = new Thread(threadDelegate);
newThread.Start();
我很想知道,为什么必须派一名代表来bridge,Thread and the Methods to Implement on that thread?
难道我们只是将方法名称直接寄给Thread吗?