Development C# Tutorial

using System;
public class MainClass
{
    static void Main(string[] args)
    {
        Console.ForegroundColor = ConsoleColor.Red;
        Console.BackgroundColor = ConsoleColor.Green;
        //Console.Clear();
    }
}