using System;
using System.Threading;
class CSTest
{
// 작업 스레드
static void ThreadProc()
{
for (int i=0; i<10; i++)
{
Console.WriteLine(i);
Thread.Sleep(500);
}
Console.WriteLine("작업 스레드 종료");
}
//주 스레드
static void Main()
{
Thread T = new Thread(new ThreadStart(ThreadProc));
T.Start();
for(;;)
{
ConsoleKeyInfo cki;
cki = Console.ReadKey();
if (cki.Key == ConsoleKey.A)
{
Console.Beep();
}
if (cki.Key == ConsoleKey.B)
{
break;
}
}
Console.WriteLine("주 스레드 종료");
}
}
'객체지향언어 > C#' 카테고리의 다른 글
이진파일 저장 예제 (0) | 2009.08.08 |
---|---|
메모장 흉내내기~ (0) | 2009.08.08 |
Stream을 이용한 파일 입출력 예제 (0) | 2009.08.08 |
File Open, Folder Open 예제 (0) | 2009.08.08 |
프로세스 열거하기 (0) | 2009.08.08 |