我收到以下错误:
"COM object that has been separated from its underlying RCW cannot be used."
我相信这个问题是因为COM对象被不叫已经创建的线程上 - STA。 我试图实现IDisposable,但它并没有为我工作。
有一对夫妇处理类似的问题,但它仍然没有解决我的问题帖子:
它是安全调用从一个终结的RCW? 释放Excel对象在析构函数
任何人都可以发布一个例子/解释如何COM对象应该被正确地从另一个线程访问?
这里是最小的代码显示问题:
using System;
using System.Threading;
namespace Test.ComInterop
{
public class Program
{
MyCom _myCom;
[STAThread]
static void Main( string[] args )
{
new Program();
}
public Program()
{
_myCom = new MyCom();
// this method call works
string version = _myCom.ComMethod();
StartThread();
}
private void StartThread()
{
Thread t = new Thread( UIRun );
t.SetApartmentState( ApartmentState.STA );
t.Start();
}
void UIRun()
{
TestUI window = new TestUI();
window.Show();
// this method call fails
window.Title = _myCom.ComMethod();
window.Closed += ( sender2, e2 )
=> window.Dispatcher.InvokeShutdown();
System.Windows.Threading.Dispatcher.Run();
}
}
class MyCom
{
private dynamic _com;
public MyCom()
{
_com = Activator.CreateInstance(
Type.GetTypeFromProgID( "Excel.Application" ) );
}
public string ComMethod()
{
return (string) _com.Version;
}
}
}