Environment.WorkingSet プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
プロセス コンテキストに割り当てられる物理メモリ量を取得します。
public:
static property long WorkingSet { long get(); };
public static long WorkingSet { get; }
static member WorkingSet : int64
Public Shared ReadOnly Property WorkingSet As Long
プロパティ値
プロセス コンテキストに割り当てられる物理メモリのバイト数を格納している 64 ビット符号付き整数。
例
次の例では、コード例を実行するコンピューターのワーキング セットのサイズを表示します。
// 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
'
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET