Phone 8 console windows with a remote device

This may be a stupid question, but so far I have not found the answers. I am developing VSE2012 for Wp8 and using a device, not an emulator for development (hyper-v conflicts with virtualbox, so I am disabled). I found a very nasty problem. It does not print to output the console output value that I use for debugging. I tried a different configuration, but nothing, but I did not find anything on msdn ... Therefore, I hope that one of you can help me.

The question is simple: how can I print the values โ€‹โ€‹of the windows of the output window? Example: if I write:

Console.Out.WriteLine("hello"); 

He does not write anything.

Thank you for your help.

+4
source share
1 answer

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

Try using Debug.WriteLine instead.

+12
source

Source: https://habr.com/ru/post/1493861/


All Articles