Bài viết
Kho tài liệu và bài viết được chia sẻ, đánh giá bởi cộng đồng
Ẩn màn hình Console khi chạy ứng dụng C# Console Application
Nội dung bài viết
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace ConsoleApplication1
{
class Program
{
[DllImport("kernel32.dll")]
static extern int GetConsoleWindow();
[DllImport("user32.dll")]
static extern bool ShowWindow(int hWnd, int nCmdShow);
static void Main(string[] args)
{
ShowWindow(GetConsoleWindow(), 0);
Console.ReadKey();
}
}
}
Nội dung bài viết