How do I get monospaced results
Options
I am using LINQpad 5 as a test scratchpad and when I am doing Console.WriteLine() or .Dump(), I noticed that my output is not using a mono spaced font (Consolas, for example). I have data on multiple lines where I want the columns to line up, but I can't seem to find a way of configuring a custom font for LINQpad results, just for the code portion.
Is this possible?
Is this possible?
Comments
-
Edit/Preferences/Results.
Set the Style Sheet for text (HTML) results to custom and click on Launch Editor and then you can addbody { margin: 0.3em 0.3em 0.4em 0.4em; font-family: Consolas; font-size: 80%; background: white; }
-
That worked great. Thanks.