搜索结果
查询Tags标签: GetCurrentProcess,共有 3条记录-
c#获取当前进程使用内存
public static string GetMemory() { Process proc = Process.GetCurrentProcess(); long b = proc.PrivateMemorySize64; for (int i = 0; i < 2; i++) { b /= 1024; } ret…
2021/12/6 7:21:18 人评论 次浏览 -
c#获取当前进程使用内存
public static string GetMemory() { Process proc = Process.GetCurrentProcess(); long b = proc.PrivateMemorySize64; for (int i = 0; i < 2; i++) { b /= 1024; } ret…
2021/12/6 7:21:18 人评论 次浏览 -
C# dotnet Thread.GetCurrentProcessorId 和 CurrentProcess.Id 的区别
使用 Thread.GetCurrentProcessorId 可以获取当前线程处理器的 Id 是哪个,而通过 Process.GetCurrentProcess().Id 可以获取当前进程的 Id 号,这两个的差别从上面描述就能看出 更进一步的 Thread.GetCurrentProcessorId() 方法将会缓存处理器的 Id 因此前后两次线程如果…
2021/6/30 11:21:00 人评论 次浏览