本文整理汇总了VB.NET中System.Diagnostics.Process.WorkingSet属性的典型用法代码示例。如果您正苦于以下问题:VB.NET Process.WorkingSet属性的具体用法?VB.NET Process.WorkingSet怎么用?VB.NET Process.WorkingSet使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类System.Diagnostics.Process
的用法示例。
在下文中一共展示了Process.WorkingSet属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Main
' 导入命名空间
Imports System.Diagnostics
Imports System.Threading
Namespace Process_Sample
Class MyProcessClass
Public Shared Sub Main()
Try
Using myProcess = Process.Start("NotePad.exe")
While Not myProcess.HasExited
Console.WriteLine()
Console.WriteLine($"Process's physical memory usage : {myProcess.WorkingSet}")
Console.WriteLine($"Base priority of the associated process : {myProcess.BasePriority}")
Console.WriteLine($"Priority class of the associated process : {myProcess.PriorityClass}")
Console.WriteLine($"User processor time : {myProcess.UserProcessorTime}")
Console.WriteLine($"Privileged processor time : {myProcess.PrivilegedProcessorTime}")
Console.WriteLine($"Total processor time : {myProcess.TotalProcessorTime}")
Console.WriteLine($"Process's name : {myProcess}")
Console.WriteLine("-------------------------------------")
If myProcess.Responding Then
Console.WriteLine("Status: Responding to user interface")
myProcess.Refresh()
Else
Console.WriteLine("Status: Not Responding")
End If
Thread.Sleep(1000)
End While
Console.WriteLine()
Console.WriteLine($"Process exit code: {myProcess.ExitCode}")
End Using
Catch e As Exception
Console.WriteLine($"The following exception was raised: {e.Message}")
End Try
End Sub
End Class
End Namespace 'Process_Sample