con lines=x
con cols=x
These are the console commands that I want to run in my current C# Console application so that I can expand the console window above the max allowed from the
Console.SetWindowSize(x,x);
So basically I want to run a console command in my current console application.
Not in a new Process of command line.
I think i had console applications confused with command prompt(cmd)
Console.SetWindowSize(Console.LargestWindowWidth,Console.LargestWindowHeight);
This seems like the safest way to get a better size for your application