var process = new Process {
StartInfo = new ProcessStartInfo {
FileName = ".\\work.exe",
Arguments = @"-z " + beta ,
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = false
}
};
process.Start();