Windows 8ストアアプリはスレッドをサポートしなくなりました:
クラスライブラリにスレッドを作成します。
protected static Thread m_thread = null;
次に、関数の1つで:
m_thread = new Thread(new ParameterizedThreadStart(RunDetection));
m_thread.Start(Something);
また、関数を中止する必要があります。
m_thread.Abort();
WIN8ストアアプリでこれを行うにはどうすればよいですか?