4/21/11

[VB.NET][SNP] Kill Current Process

 Imports System.Diagnostics 
 Module Module1  
   Sub Main()  
     Process.GetCurrentProcess.Kill()  
   End Sub  
 End Module  


Simply use this, by calling the module.
It closes  the current program's process.

No comments: