What happens when this program in VB.NET is run? Imports System Imports System.Diagnostics Dim exforsys As New Process() exforsys.StartInfo.FileName = "Notepad.exe" exforsys.StartInfo.Arguments = " " exforsys.Start()
Select Answer:
Raises Exception
Notepad is run from a VB.NET application
No Output is produced just a blank screen
Gives Error
|