Get the number of bytes in the operating system's memory page in CSharp

Description

The following code shows how to get the number of bytes in the operating system's memory page.

Example


/* w ww. j ava2s.c om*/
using System;

class Sample 
{
    public static void Main() 
    {
       Console.WriteLine(Environment.SystemPageSize);
    }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    Development »




Console
Encoding
Environment
Random