I want an aleternative to find total memory usage and memory used by individual process without using System.Diagnostic in C# program, as I am developing an application on Mono implementation for one device and it doesnt have any System.diagnostic implementation yet.
thanks,
Milan
You might find
GC.GetTotalMemory(false)to be useful. You can read about it here :