vote up 1 vote down star
2

Looking at this LINQ demo:

LINQ Framework Overview

When going in debug mode, the output have colors in it. I'm using the same ObjectDumper class and I only have the black/white console window.

How can I have the same results in the console window?

Thanks

flag

75% accept rate

4 Answers

vote up 0 vote down

You can set colors of the console text and/or background in the properties if that's what you're looking for... Just right click the title bar, click Properties and choose desired colors.

link|flag
The output have different colors in it. Name=Mr. Brownstone Name= is in blue Mr. Brownstone is in green... – vIceBerg Nov 20 '08 at 16:01
vote up 0 vote down

If you want to control this programmatically, use the System.Console.ForegroundColor property.

http://msdn.microsoft.com/en-us/library/system.console.foregroundcolor.aspx

link|flag
vote up 2 vote down

What about :

 Console.ForegroundColor = ConsoleColor.Yellow;
 Console.BackgroundColor = ConsoleColor.DarkRed;
 Console.WriteLine("Test");
link|flag
Did you look at the video, his fieldnames are one color and the values in the fields are an other, I don't beleive he switchs back and forth all the time, hmmm very good question indeed. – CheGueVerra Nov 21 '08 at 19:00
vote up 0 vote down

Daok have what you want...

But you can always use Win32 calls.

[DllImport("kernel32.dll")] public static extern bool SetConsoleTextAttribute(IntPtr hConsoleOutput, int wAttributes);
[DllImport("kernel32.dll")] public static extern IntPtr GetStdHandle(uint nStdHandle);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.