This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thread threadA = new Thread(new ThreadStart(ThreadMethod)); // | |
threadA.Start(); | |
// 別スレッドで動作させるメソッド | |
private void ThreadMethod() { | |
//ここに処理を書く | |
} |
0 件のコメント:
コメントを投稿