Mega Code Archive
Reset console color, window size, buffer height and width
using System;
public class MainClass
{
static void Main(string[] args)
{
Console.ResetColor();
Console.SetWindowSize(100, 50);
Console.BufferHeight = 500;
Console.BufferWidth = 100;
}
}