c#调用进程外Com组件Intptr参数问题

1.最近在解决64位应用程序调用32位dll的问题,想使用进程外Com来解决,编写了相应的Demo,当接口方法的参数是string或int时程序都能正常运行,但接口方法的参数含有IntPtr类型时程序报错
2.接口方法: public void TestPtr(IntPtr p)

    {

string ss = Marshal.PtrToStringAnsi(p);

MessageBox.Show("1111111111" + ss);

}

外部调用:

         System.Type t = Type.GetTypeFromProgID("TestComServer.TestComVisibleClass");

dynamic o = Activator.CreateInstance(t);

string iCameraID = txtCameraIndexCode.Text;//"12345678001310000017";

System.IntPtr ptrCertFile = Marshal.StringToBSTR(iCameraID);

o.TestPtr(ptrCertFile);

3.报错内容

图片描述

4.因本人com相关技术小白,曾傻傻的尝试先把Intptr转为int32,然后在com服务器中转换为Intptr,失败了

请各位大神帮忙解决,谢谢

以上是 c#调用进程外Com组件Intptr参数问题 的全部内容, 来源链接: utcz.com/p/189771.html

回到顶部