How to open or launch PDF Files in C#.Net?

Happy boy picture Happy boy · Jul 19, 2011 · Viewed 84.3k times · Source

How do I launch a PDF Programmatically from a C# application in it's own process?

Originally: I want to open PDF file when i click button in C#.Net?

Answer

Razack picture Razack · Jul 19, 2011

I assume you just want to open the file. Try the following

System.Diagnostics.Process.Start(@"c:\file.pdf");