Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Console windows phone 8 with remote device

maybe is a stupid question but I didn't find answers until now. I'm developing with VSE2012 for Wp8 and use a device and not an emulator for develop (hyper-v has a conflict with virtualbox, so I've deactivated). I've found a very annoying problem. It don't print to console output value that I use to debug. I've tried various configuration but nothing, and on msdn I've not found nothing... So hope that someone of you can help me.

The question is simple: how can I print to console output window values ? Example: If I write:

Console.Out.WriteLine("hello"); 

It doesn't write nothing.

Thank you for your help.

like image 844
Andrea V. Abbondanza Avatar asked Dec 15 '22 08:12

Andrea V. Abbondanza


1 Answers

I've had the same problem, but I don't think you should use Console.WriteLine.

Try using Debug.WriteLine instead.

like image 52
Thierry Avatar answered Dec 18 '22 11:12

Thierry