C# Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 433 Page Views: 

How do you start another process from c#?



Posted By: Avi Date: 15 October 2010 02:16:47 AM
 Answer:

Process p = new Process(); p.StartInfo.FileName =”notepad.exe”; p.Start();


Posted By: avibtech


Date: 15 October 2010 02:16:47 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image nMiJIZ
Related Questions
C# : How do you overload operator + for class Complex?

How do you overload operator + for class Complex?

public static Complex operator+(Complex c1, Complex c2);
Category: C# Date: 10/13/2010 1:52:32 PM
C# : How do you call parallel version of foreach loop?

How do you call parallel version of foreach loop?

Parallel.ForEach<Test>(list, (i) => i.DoSomething());
Category: C# Date: 10/13/2010 1:42:47 PM
C# : How do you format integer to output hexadecimal value?

How do you format integer to output hexadecimal value?

String.Format(“{0:x}”, 100);
Category: C# Date: 10/13/2010 1:32:46 PM
C# : Can you use goto in c# programs?

Can you use goto in c# programs?

Yes
Category: C# Date: 10/13/2010 12:49:47 PM
C# : Can you define more than one class in one file?

Can you define more than one class in one file?

Yes
Category: C# Date: 10/13/2010 12:31:14 PM