Fill "complete" Console Background Green,...

  • Thread starter Thread starter Kerem Gümrükcü
  • Start date Start date
K

Kerem Gümrükcü

Hi,

how can i fill a consoles background with
complete green color? The ForegroundColor
member only fills the written buffers background,
but i need to fill the complete consoles background
buffer with green color. How can i do this? I guess
this can be made with some API Pinvoke, but which
one?


Regards

Kerem

--
 
Hi,

how can i fill a consoles background with
complete green color? The ForegroundColor

This works for me:

Console.BackgroundColor = ConsoleColor.Green;
Console.Clear();

Chris
 
Back
Top