5
Answers

How clr understands different languages ?

Hi all friends here..
 
I have 1.5 years of web development experiences in .net  and been learning .net internals, it is being much more difficult to understand about the magic of how clr understands different languages?..
 
if u friend know how does the clr do magics?..   thanks in advance for u all friends..
 
 
 
Answers (5)
0
Rahul Singh

Rahul Singh

NA 1.5k 226k 10y
Hi Pitchaiyan, You can use Process class methods for this purpose, check this link on MSDN.

You can do something like this on a button click or whatever event you want to bind:-

Process p = new Process();
p.StartInfo.FileName = "Yourfile.exe";
p.StartInfo.Arguments = String.Format(-- Your params--);
p.Start();