public Form1()
{
InitializeComponent();
}
[System.Runtime.InteropServices.DllImport("kernel32.dll", SetLastError
= true)]
[return: System
.Runtime
.InteropServices
.MarshalAs(System
.Runtime
.InteropServices
.UnmanagedType
.Bool
)]
static extern bool AllocConsole();
[System.Runtime.InteropServices.DllImport("Kernel32")]
public static extern void FreeConsole();
private void Form1_Load(object sender
, EventArgs e
)
{
AllocConsole();
}
}
转载请注明原文地址: https://lol.8miu.com/read-16929.html