Environment.WorkingSet Propiedad

Definición

Obtiene la cantidad de memoria física asignada al contexto del proceso.

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

Valor de propiedad

Un entero de 64 bits con signo que contiene el número de bytes de memoria física asignada al contexto del proceso.

Ejemplos

En el ejemplo siguiente se muestra el tamaño del conjunto de trabajo del equipo que ejecuta el ejemplo de código.

// Sample for the Environment::WorkingSet property
using namespace System;
int main()
{
   Console::WriteLine( "WorkingSet: {0}", Environment::WorkingSet );
}

/*
This example produces the following results:

WorkingSet: 5038080
*/
// 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
'

Se aplica a