using System.Diagnostics;
Process.Start("notepad.exe");
(or)
using System.Diagnostics;
ProcessStartInfo proc = new ProcessStartInfo();
proc.FileName="notepad.exe";
proc.Arguments = @"D:\dataset_tables.txt"; //It's going to open that txt file
Process.Start(proc);
1 comment:
Post a Comment