Easy to use Package to help you start new Processes
This examples shows how to start a new Process for filename
with the argument --foo
var cmd = CommandlineFactory.Create("filename").AddArgument("--foo").Build();
var result = await cmd.RunAsync();