using System;
namespace ExampleApp
{
class Program
{
static void Main(string[] args)
{
try
{
var task = (new MyProcess()).RunAsync(args);
task.Wait();
}
catch (Exception ex)
{
Console.Error.WriteLine(ex);
}
}
}
}