'Memory'에 해당되는 글 1건

  1. 2008.02.02 시스템 / 프로세스 메모리 구하기

시스템 / 프로세스 메모리 구하기

Program/C# 2008. 2. 2. 23:51
시스템 메모리 구하기
유경상 님의 블로그 http://www.simpleisbest.net/archive/2005/11/23/300.aspx

해당 프로세스 메모리 구하기
System.Diagnostics.Process ie = System.Diagnostics.Process.GetCurrentProcess();;
MessageBox.Show(Convert.ToInt32(Convert.ToInt32(ie.WorkingSet)/1024).ToString());

'Program > C#' 카테고리의 다른 글

C# 에서의 클래스 이름이란..?  (0) 2008.02.13
C# 에서 Win32 함수 쓰기.. C# C++ 자료형 비교  (0) 2008.01.17
C# Dll Load  (1) 2008.01.17
: