Environment.WorkingSet Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene la quantità di memoria fisica associata al contesto del processo.
public:
static property long WorkingSet { long get(); };
public static long WorkingSet { get; }
static member WorkingSet : int64
Public Shared ReadOnly Property WorkingSet As Long
Valore della proprietà
Intero con segno a 64 bit contenente il numero di byte di memoria fisica associata al contesto del processo.
Esempio
Nell'esempio seguente vengono visualizzate le dimensioni del set di lavoro del computer che esegue l'esempio di codice.
// 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
'