Environment.WorkingSet Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the amount of physical memory mapped to the process context.
public:
static property long WorkingSet { long get(); };
public static long WorkingSet { get; }
static member WorkingSet : int64
Public Shared ReadOnly Property WorkingSet As Long
Property Value
A 64-bit signed integer containing the number of bytes of physical memory mapped to the process context.
Examples
The following example displays the size of the working set of the computer that runs the code example.
// 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
'
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET