C# Environment SystemPageSize
Description
Environment SystemPageSize
gets the number of bytes
in the operating system's memory page.
Syntax
Environment.SystemPageSize
has the following syntax.
public static int SystemPageSize { get; }
Example
Gets the number of bytes in the operating system's memory page.
//from w ww . j a v a 2 s .c o m
using System;
class Sample
{
public static void Main()
{
Console.WriteLine(Environment.SystemPageSize);
}
}
The code above generates the following result.