Skip to content

Instantly share code, notes, and snippets.

@borismod
Created October 7, 2014 07:56
Show Gist options
  • Select an option

  • Save borismod/1296ec188db944c75df7 to your computer and use it in GitHub Desktop.

Select an option

Save borismod/1296ec188db944c75df7 to your computer and use it in GitHub Desktop.
Write to console from Windows Application
public static class Program
{
private static void Main(string[] args)
{
AttachConsole(-1);
Console.WriteLine();
// Rest of your code
}
[System.Runtime.InteropServices.DllImport("Kernel32.dll")]
public static extern bool AttachConsole(int processId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment