Possible Duplicate:
What’s a good, if any, .NET Windows automation library?
I am trying to call third party app using C#
var Proc = new System.Diagnostics.Process();
Proc.StartInfo.FileName = "C:\\Program Files (x86)\\Skype\\Phone\\Skype.exe";
However I want to fill username and password using c# code and to hit login using code.
Any idea?