次の方法で共有


Environment.WorkingSet プロパティ

プロセス コンテキストに割り当てられる物理メモリ量を取得します。

Public Shared ReadOnly Property WorkingSet As Long
[C#]
public static long WorkingSet {get;}
[C++]
public: __property static __int64 get_WorkingSet();
[JScript]
public static function get WorkingSet() : long;

プロパティ値

プロセス コンテキストに割り当てられる物理メモリのバイト数を格納している 64 ビット符号付き整数。

解説

Windows NT 4.0, Windows 2000 プラットフォームに関する注意点: このプロパティは、記述されているとおりに動作します。

Windows 98, Windows Millennium Edition プラットフォームに関する注意点: このプロパティは常に 0 を返します。

使用例

 
' Sample for the Environment.WorkingSet property
Imports System

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

[C#] 
// 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
*/

[C++] 
// Sample for the Environment::WorkingSet property
#using <mscorlib.dll>

using namespace System;

int main() {
   Console::WriteLine(S"WorkingSet: {0}", __box(Environment::WorkingSet));
}
/*
This example produces the following results:

WorkingSet: 5038080
*/

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

.NET Framework セキュリティ:

参照

Environment クラス | Environment メンバ | System 名前空間