C# 스레드 Thread
프로세스(Process) - 실행 중인 프로그램 - 스케줄링 : 생성 -> 준비 -> 실행 -> 대기 ...-> 종료 - 멀티태스킹 스레드(thread) - OS가 CPU시간을 할당하는 기본 단위 - 하나 이상의 스레드로 구성 - 최적화 및 성능 향상의 장점이 있으나, 디버깅 이슈 등 구현이 어려움 - Context Switching 시 성능 저하 우려 using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace _139_THREAD1 { class Pr..