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
Start it in a new Process
Process photoViewer = new Process(); photoViewer.StartInfo.FileName = @"The photo viewer file path"; photoViewer.StartInfo.Arguments = @"Your image file path"; photoViewer.Start();