Idle curiosity...
I\'m looking at some of the properties of the current process:
using(Process p = Process.GetCurrentProcess())
{
// Inspect properti
MaxWorkingSet and MinWorkingSet are the values returned by the Win32 API GetProcessWorkingSetSize. These are limits used by the virtual manager that will be enforced when the memory is in short supply. As long as enough memory is available, the current working set size is allowed to grow larger than the value in MaxWorkingSet.