The OP question was asking for how to set the entire background color to blue. None of the other samples shows this correctly. Here's how:
namespace ClearConsole
{
class Program
{
static void Main(string[] args)
{
Console.BackgroundColor = ConsoleColor.Blue;
Console.Clear();
}
}
}