如何在C#.net core / .net标准中获取或使用内存
作者:互联网
有没有办法知道当前进程中当前使用的内存?
我查了很多问题:
How to get the amount of memory used by an application
How to get memory available or used in C#
它们不适用于.Net Standard 1.6.
解决方法:
在这里,您可以检查它在HealthChecks project中的完成情况.您可以使用System.Diagnostics命名空间中的Process类.
*编辑*
可能需要添加System.Diagnostics.Process Nuget package.
.NET Standard仅支持xxxx64内存属性(例如PrivateMemorySize64而不是PrivateMemorySize).
标签:c,net,net-core,asp-net-core,net-standard 来源: https://codeday.me/bug/20190611/1217135.html