0
我該如何多線程才能在當前類或不同類中運行私有或公共函數?如何使用私人或公共功能進行多線程? C#4.0
我該如何多線程才能在當前類或不同類中運行私有或公共函數?如何使用私人或公共功能進行多線程? C#4.0
List<Action> tasks = new List<Action>();
tasks.Add(() => { ... do whatever });
tasks.Add(() => { ... do whatever });
tasks.Add(() => { ... do whatever });
tasks.Add(() => { ... do whatever });
System.Threading.Tasks.Parallel.Invoke(tasks.ToArray());
你可以把這個上下文置於私人或公共方法的任何地方你喜歡。執行上下文也可以是私有的和公共的。
谷歌是你的朋友... – Flipster 2010-12-11 06:04:23
然後,它看起來像谷歌對我不友好。 – 2010-12-11 06:07:54
你能澄清嗎?它是什麼」? – Marco 2010-12-11 06:24:06