How to open .jpg image in Windows Photo Viewer from C# app?
.jpg
Not inside app like this code,
FileStream stream = new FileStream(\"test.p
I think you can just use:
Process.Start(@"C:\MyPicture.jpg");
And this will use the standard file viewer associated with .jpg files - by default the windows picture viewer.