나는, 없나 싶어서 계속 명령어만 찾고 있었는데,
외국사람들은 필요하니까 이렇게도 쓰더라.. 멋져!
출처 : http://cboard.cprogramming.com/csharp-programming/74269-what-can-i-use-instead-getch-csharp.html
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace ConsoleApplication1
{
class Program
{
[DllImport("msvcrt")]
static extern int _getch();
static void Main(string[] args)
{
Console.WriteLine("Hello world");
Console.WriteLine("Press any key to end..");
_getch();
}
}
}
'2_ 바삭바삭 프로그래밍 > C# and Visual C++' 카테고리의 다른 글
[MFC] Radio button check상태로 만들기 (1) | 2012.07.30 |
---|---|
[MFC] 전역변수 사용하기 (2) | 2012.07.30 |
[C#] 클래스를 배열로 선언하기 (2) | 2012.06.28 |
C# - 입출력, 랜덤, 현재시간, 웹페이지 받아오기 및 다운로드, Alt+F4 방지 (0) | 2012.01.07 |
C# - MP3 간단하게 재생하기 (mciSendString, winmm.dll) (2) | 2012.01.05 |