我正在编写一些测试代码来模拟非托管代码,这些代码调用了我的后期绑定(bind)COM对象的C#实现。我有一个声明为IDispatch类型的接口(interface),如下所示。

 [Guid("2D570F11-4BD8-40e7-BF14-38772063AAF0")]
 [InterfaceType(ComInterfaceType.InterfaceIsDual)]
 public interface TestInterface
 {
     int Test();
 }

 [ClassInterface(ClassInterfaceType.AutoDual)]
 public class TestImpl : TestInterface
 {
 ...
 }

当我使用下面的代码调用IDispatch的GetIDsOfNames函数时
  ..
  //code provided by Hans Passant
  Object so = Activator.CreateInstance(Type.GetTypeFromProgID("ProgID.Test"));
  string[] rgsNames = new string[1];
  int[] rgDispId = new int[1];
  rgsNames[0] = "Test";

  //the next line throws an exception
  IDispatch disp = (IDispatch)so;

其中IDispatch定义为:
 //code provided by Hans Passant
 [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("00020400-0000-0000-C000-000000000046")]
 private interface IDispatch {
     int GetTypeInfoCount();
     [return: MarshalAs(UnmanagedType.Interface)]
     ITypeInfo GetTypeInfo([In, MarshalAs(UnmanagedType.U4)] int iTInfo, [In, MarshalAs(UnmanagedType.U4)] int lcid);
     void GetIDsOfNames([In] ref Guid riid, [In, MarshalAs(UnmanagedType.LPArray)] string[] rgszNames, [In, MarshalAs(UnmanagedType.U4)] int cNames, [In, MarshalAs(UnmanagedType.U4)] int lcid, [Out, MarshalAs(UnmanagedType.LPArray)] int[] rgDispId);
  }

引发InvalidCastException。是否可以将C#接口(interface)转换为IDispatch?

最佳答案

您需要向regasm注册程序集,并且需要使用[ComVisible]属性标记要从COM访问的类。您可能还需要使用tlbexp(以生成)和tregsvr来生成和注册类型库。

而且(从Win32角度来看)“disp =(IDispatch)obj”与“disp = obj as IDispatch”不同-使用'as'运算符实际上在对象上调用QueryInterface方法以获取指向所请求接口(interface)的指针,而不是尝试将对象转换到接口(interface)。

最后,使用C#的“动态”类型可能更接近其他人为访问您的类所做的工作。

10-02 01:36