Program/C#

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

TJStory 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());