Imports System.Diagnostics
public class Test
public Shared Sub Main
Dim new_process As New Process
new_process.StartInfo.FileName = "test.txt"
new_process.StartInfo.Verb = "Open"
new_process.Start()
End Sub
End class