How to make a Console application work from an empty project in Xamarin studio

user3662953 picture user3662953 · May 26, 2014 · Viewed 9.6k times · Source

I've created a simple "hello world" application, starting from an Empty Project. The code just prints a hello world

public class Test_Class {
    public static void Main() {
        System.Console.WriteLine ("hello, world");
    }
}

But no console window pops up when I run the application. How do I make the console show?

Answer

sashoalm picture sashoalm · Jun 3, 2016

You need to check the "Run on external console" checkbox from Project Options -> Run -> General.

enter image description here