Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Console writeline does not work

I'm debugging a UWP in C#. On a certain moment the console stops giving me the write line content.

Does anyone can imagen what the problem could be?

enter image description here

like image 891
Belekz Avatar asked Jan 26 '18 12:01

Belekz


1 Answers

The Console.WriteLine isn't for IDE output window. It writes to console. So, you could use Debug.WriteLine() which is available in System.Diagnostics

like image 55
lucky Avatar answered Oct 13 '22 01:10

lucky