本文介绍了如何在C#中使用HRESULT的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好

有人可以告诉我是否有一种简单的方法可以在C#中使用 HRESULT 吗?
我有一个 DLL ,它使用HRESULT来表示错误/成功代码,我正在尝试在我的C#代码中使用此 DLL .我无法添加对 DLL 文件的引用. VS2010 .NET 4.0无法将 dll 文件识别为程序集组件.因此,我使用 interopservice 使用导入的 dll 文件,并指向函数.
函数应定义为HRESULT someFunction(),返回的代码我需要使用 SUCCEEDED(HRESULT hr) FAILED(HRESULT hr)进行评估.
感谢您的帮助.

Hello everyone

Can some one tell me if there is an easy way to use HRESULT in C#?
I have a DLL that uses HRESULT for error/success codes and I am trying to use this DLL in my c# code. I can not add a reference to the DLL file. VS2010 .NET 4.0 does not recognize the dll file as an assembly component. Therefore I use import dll file using interopservice and entry point to the functions.
Functions should be defined as HRESULT someFunction() and the return code I need to evaluate it using SUCCEEDED(HRESULT hr) and FAILED(HRESULT hr).
Thanks for the help.

推荐答案



这篇关于如何在C#中使用HRESULT的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 14:35