How I open a file in c#? I don\'t mean reading it by textreader and readline(). I mean open it as an independent file in notepad.
You can use Process.Start, calling notepad.exe with the file as a parameter.
notepad.exe
Process.Start(@"notepad.exe", pathToFile);