标签: c# multithreading
我有一个方法,我想在另一个线程中运行它。
{ ... string output = MyClass.MyMethod(); }
MyClass方法返回一个字符串,我需要获取输出并运行此线程。
MyClass
我怎么能这样做?