jeudi, juin 28, 2007

Open text file using c#

Many times we want to view the logs of our developed application in notepad, it is so simple :

using System.Diagnostics;
.....
System.Diagnostics.Process.Start("log.txt");

Aucun commentaire: