Home »
.Net »
C# Programs
C# - Environment.SystempageSize Property with Example
In this tutorial, we will learn about the C# Environment.SystempageSize property with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
Environment.SystempageSize Property
The Environment.SystempageSize property returns an integer value that denotes the memory size for the OS page file.
Syntax
int Environment.SystempageSize
Parameter(s)
Return Value
Returns an 'int' value.
C# Example of Environment.SystemDirectory Property
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 . . .
C# Environment Class Programs »