The source code to get the memory size for OS page file using Environment class is given below. The given program is compiled and executed successfully.
using System;
class Sample
{
//Entry point of Program
static public void Main()
{
int memory = 0;
memory = Environment.SystemPageSize;
Console.WriteLine("Amount of memory for an OS page file: " +memory);
}
}
Output:
Amount of memory for an OS page file: 4096
Press any key to continue . . .
Program:
The source code to get the memory size for OS page file using Environment class is given below. The given program is compiled and executed successfully.
Output: