Get the current process. : Process « Windows System « VB.Net
- VB.Net
- Windows System
- Process
Get the current process.
Imports System
Imports System.Diagnostics
Imports System.ComponentModel
Class MyProcess
Shared Sub Main()
Dim currentProcess As Process = Process.GetCurrentProcess()
End Sub
End Class
Related examples in the same category