Is there a way to write to console / command prompt / powershell (like Console.WriteLine()) or anything similar in UWP apps?
Console.WriteLine()
If console is unavailable i
I just want to also add that debug.writeline seems to best work on the main thread so if async/await is used use something like Device.BeginInvokeOnMainThread(() => Debug.WriteLine(response)); to print to the console
Device.BeginInvokeOnMainThread(() => Debug.WriteLine(response));