本文整理匯總了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