[DllImport("kernel32")]
static extern bool AllocConsole();
None.
None.
This is a simple way to create a "dual-mode" application can be a console or windows forms application.
// Compile as a Windows Forms app.
[STAThread]
static void Main(string[] args)
{
if (args.Length < 1)
{
Application.Run(new Form1());
}
else
{
AllocConsole();
Console.WriteLine("Hello, World!");
Console.Write("Press a key to continue...");
Console.Read();
}
}
Do you know one? Please contribute it!