I made a CMD program that can convert the photos from Png to SVG format. how can I call this program in a C# program?
the Photo Path is:
    `var path = @"C:\Users\";
    var sourcePath = Path.Combine(path, @"emoji1.png");
    var destPath = Path.Combine(path, @"png01.svg");`
i would like to open my cmd Photo converter Program in other C# Program`
 
    