If you double click on a PDF file, it will be opened by the default application linked to that extension. So if Acrobad Reader is installed it will be opened with that application.

In .Net, we have Process.Start which can start an executable. So if we start a PDF file, it will be openend by the default application.

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