Don't want to wait for method to return
问题 Is there a way to "tell" C# not to wait for object's method to return? Using COM (VbScript) I'm able to fire a method without waiting for it to return, so I would like to use C# the same way. The VbScript Code: Dim qtApp Set qtApp = CreateObject("QuickTest.Application") qtApp.Open("C:\Temp\Test") qtApp.Run '// VbScript does not wait for this method to finish Set qtApp = Nothing The C# code: //Refer the object var qtApp = new QuickTest.Application(); //Open the test qtApp.Open("C:\\Temp\\Test"