Windows 8 应用商店应用不再支持 Thread:
我在类库中创建一个线程:
protected static Thread m_thread = null;
然后在其中一个功能中:
m_thread = new Thread(new ParameterizedThreadStart(RunDetection));
m_thread.Start(Something);
我还需要中止该功能:
m_thread.Abort();
如何在 WIN8 商店应用程序中执行此操作?