static void Main(string[] args) { // 전투 로직 초기화 ContentsPrepare.Init(); for (int i = 0; i < 1; ++i) { // Task.Run( () => TestSimulation(i) ); } Console.ReadLine(); }
static void Main(string[] args) { // 전투 로직 초기화 ContentsPrepare.Init(); time = Stopwatch.StartNew(); for (int i = 0; i < testCount; ++i) { Task.Run(() => TestSimulation(i)); } Console.ReadLine(); }