//ThreadStart Thread threadCount = new Thread(new ThreadStart(countOne2Ten)); threadCount.Start(); public void countOne2Ten() { for (int i = 1; i <= 10; i++) { ...
確定! 回上一頁