How can I run a console application in C#, passing parameters to it, and get the result of the application in Unicode? Console.WriteLine is used in the console
Console.WriteLine
Take a look at the Process class. You can call any executable using Process.Start("myexe.exe");