2011-05-04 2 views
17

System.Diagnostics.Process 개체가 있습니다. 내 C# 프로그램이 일부 조건을 모니터링하고 있습니다. 조건에 도달하면 프로세스의 전체 메모리 덤프를 가져 가고 싶습니다.C#을 사용하여 메모리 덤프 사용

이것을 달성하는 가장 좋은 방법은 무엇입니까?

CLR에서 제공하는 방법이 있습니까?

+0

전체 * * 메모리 덤프 :

[DllImport("dbghelp.dll", EntryPoint = "MiniDumpWriteDump", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Unicode, ExactSpelling = true, SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] public static extern bool MiniDumpWriteDump( IntPtr hProcess, uint processId, SafeHandle hFile, MINIDUMP_TYPE dumpType, IntPtr expParam, IntPtr userStreamParam, IntPtr callbackParam); 

당신은 예를 들어이 프로젝트의 코드를 확인할 수 있습니까? 마찬가지로, "전체 주소 공간"? – Jon

답변

11

ProcDump from Sysinternals을 사용하고 필요할 때마다 C# 프로그램을 호출 할 수 있습니다.

Process.Start("procdump " + otherProgramPID.ToString());