Command Window & Line Breaks
Visual Studio
1
Posts
1
Posters
2
Views
1
Watching
-
Hi, I'd like to write debugging text into the Command Window. But I'd like to text with line breaks. I'd tryed with \n and System.Environment.NewLine without success. The best thing I got was return an string[], but the output was something like this: [0] blah [1] blah blah ... The Code is like this: public class CW { public static string[] Write() { return new string[] { "blah", "blah blah" }; } } In the command window is: ? CW.Write() Does anybody know how to do it? Cheers, - xico -