Everyone knows how to open a file from code. Let’s say we have an executable file and we want to use C# to open it. All we have to do is to use the Process.Start(string argument) method like this: Process .Start( @"c:/sample.exe" ); By running this, the
Read More...