Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
static void Main(string[] args)
|
||||
{
|
||||
int bufferHeight = Console.BufferHeight;
|
||||
int bufferWidth = Console.BufferWidth;
|
||||
int windowHeight = Console.WindowHeight;
|
||||
int windowWidth = Console.WindowWidth;
|
||||
|
||||
Console.Write("Buffer Height: ");
|
||||
Console.WriteLine(bufferHeight);
|
||||
Console.Write("Buffer Width: ");
|
||||
Console.WriteLine(bufferWidth);
|
||||
Console.Write("Window Height: ");
|
||||
Console.WriteLine(windowHeight);
|
||||
Console.Write("Window Width: ");
|
||||
Console.WriteLine(windowWidth);
|
||||
Console.ReadLine();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue