You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GetSnapshot() method of the WindowsSnapshotProvider class currently gets memory usage value using (ulong)process.WorkingSet64, while the GetMemoryUsageInBytes()method in the same class correctly and more performantly uses Environment.WorkingSet.
Please update GetSnapshot() to use Environment.WorkingSet.