The following vbscript code works prefectly fine:
Dim App
Set App = GetObject("","QuickTest.Application")
App.Quit
But when I translate it into C# code as below:
class Program
{
[STAThread]
static void Main(string[] args)
{
object qtApp = Marshal.GetActiveObject("QuickTest.Application");
(qtApp as QuickTest.Application).Quit();
}
}
I get the exception:
An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in mscorlib.dll
Additional information: (Exception from HRESULT: 0x800401E3 (MK_E_UNAVAILABLE))
I don't think the problem is related to ROT, because the vbscript code works. So what is wrong with the C# code?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…