Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Silverlight -- Debug.WriteLine() not working for a long string

I have a longish (3626 chars) string. When I have in my code

Debug.WriteLine(myString);

it only writes the first part. How can I tell it to write the whole thing?

like image 950
William Jockusch Avatar asked Sep 08 '26 05:09

William Jockusch


1 Answers

There is a limit to how long the string can be when your use Debug.WriteLine(). What you could do is simply break your string up and display each block individually.

like image 165
keyboardP Avatar answered Sep 09 '26 18:09

keyboardP