본문 바로가기
Language/C#

[C#] Thread

by 종승 2023. 1. 25.
// 쓰레드 시작
thread.Start();

// 쓰레드 강제종료
thread.Abort();

// 작업 수행 후 종료
thread.Join();