Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Console in Xamarin

Background: I was working on a C# project. In the past, when I did

System.Console.WriteLine("Hello");

I would get see a pop-up Console printing "Hello". The console disappeared today, what can I do to make it appear again?

Many thanks for your help!

like image 557
Dinosaur Avatar asked Oct 20 '22 15:10

Dinosaur


1 Answers

If you are using Visual studio, go to the menu options and the choose:

Debug --> Windows --> Output.

Then make sure the window is set to 'show Output from: Debug'

If you are using Xamarin studio, first of all enable the Application Output window:

View -> Pads -> Application Output

like image 196
IdoT Avatar answered Oct 22 '22 23:10

IdoT