■ 명령 프롬프트를 표시하거나 숨기는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#region 명령 프롬프트 표시하기 - AllocConsole() /// <summary> /// 명령 프롬프트 표시하기 /// </summary> /// <returns>처리 결과</returns> [DllImport("kernel32", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool AllocConsole(); #endregion #region 명령 프롬프트 숨기기 - FreeConsole() /// <summary> /// 명령 프롬프트 숨기기 /// </summary> /// <returns>처리 결과</returns> [DllImport("kernel32", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool FreeConsole(); #endregion |