I have an app that, while running, needs to poll its own memory usage. It would be ideal if it could list out the memory usage for each object instantiated. I know this ca
Process proc = Process.GetCurrentProcess(); Logger.Info(proc.PeakWorkingSet64/1024 + "kb");