为什么 LoadTypeLibEx System.ArgumentException 发生异常:值不在预期范围内?
我正在 C++/CLI 中加载类型库。在 C# 中,它加载成功,但在托管 C++/CLI 中,它一次又一次地给出以下异常。
LoadTypeLibEx System.ArgumentException 发生异常:值不下降 在预期范围内
在 LoadTypeLib(String strTypeLibName, ITypeLib typeLib)
这是一个 PInvoke 签名:
[DllImport("oleaut32.dll", CharSet = CharSet::Unicode, PreserveSig = false)]
static void LoadTypeLib(String^ strTypeLibName, [MarshalAs(UnmanagedType::Interface)] [Out] System::Runtime::InteropServices::ComTypes::ITypeLib^ typeLib);
我的代码:
ITypeLib^ oTypeLib;
LoadtypeLib(TLB, oTypeLib);
我被困在这里。请给我解决这个异常的方法。
问候 乌斯曼
I am loading type library in C++/CLI. In C# its loading successfully but it's giving again and again following exception in managed C++/CLI.
exception occured at LoadTypeLibEx System.ArgumentException: Value does not fall
within the expected rangeat LoadTypeLib(String strTypeLibName, ITypeLib typeLib)
Here's a PInvoke Signature:
[DllImport("oleaut32.dll", CharSet = CharSet::Unicode, PreserveSig = false)]
static void LoadTypeLib(String^ strTypeLibName, [MarshalAs(UnmanagedType::Interface)] [Out] System::Runtime::InteropServices::ComTypes::ITypeLib^ typeLib);
My code:
ITypeLib^ oTypeLib;
LoadtypeLib(TLB, oTypeLib);
I am stuck here. Kindly give me way around to get rid of this exception.
Regards
Usman
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 C++/CLI,通常您希望使用公共头文件中的原型来调用 API 函数,而不是自己编写 ap/invoke 声明。编译器将使用 C++ 互操作或 p/invoke,具体取决于您使用的是 /clr 还是 /clr:pure。
无论如何,第二个参数应该是按引用传递。在 C# 中,将使用
out
关键字。在 C++/CLI 中,out 参数的语法是:在您的情况下,也许
With C++/CLI, usually you want to call API functions using a prototype from the public header file, not by writing a p/invoke declaration yourself. The compiler will use either C++ interop or p/invoke depending on whether you're using /clr or /clr:pure.
In any case, the second argument should be pass-by-reference. In C#, that'd use the
out
keyword. In C++/CLI, the syntax for an out argument is:In your case, perhaps