Open image with MS Paint

  • Thread starter Thread starter BC
  • Start date Start date
The following code should open mspaint with an image.

using System.Diagnostics;

....

Process.Start("mspaint", @"""C:\Image.jpg""");
 
Back
Top