Environment.WorkingSet Eigenschap

Definitie

Hiermee haalt u de hoeveelheid fysiek geheugen op die is toegewezen aan de procescontext.

public:
 static property long WorkingSet { long get(); };
public static long WorkingSet { get; }
static member WorkingSet : int64
Public Shared ReadOnly Property WorkingSet As Long

Waarde van eigenschap

Een 64-bits geheel getal met het aantal bytes aan fysiek geheugen dat is toegewezen aan de procescontext.

Voorbeelden

In het volgende voorbeeld wordt de grootte weergegeven van de werkset van de computer waarop het codevoorbeeld wordt uitgevoerd.

// Sample for the Environment.WorkingSet property
using System;

class Sample
{
    public static void Main()
    {
    Console.WriteLine("WorkingSet: {0}", Environment.WorkingSet);
    }
}
/*
This example produces the following results:

WorkingSet: 5038080
*/
// Sample for the Environment.WorkingSet property
open System

printfn $"WorkingSet: {Environment.WorkingSet}"

// This example produces the following results:
//     WorkingSet: 5038080
' Sample for the Environment.WorkingSet property
Class Sample
   Public Shared Sub Main()
      Console.WriteLine("WorkingSet: {0}", Environment.WorkingSet)
   End Sub
End Class
'
'This example produces the following results:
'
'WorkingSet: 5038080
'

Van toepassing op