- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 [DLLImport]
属性访问我的 .NET 代码中的一堆 C++ 函数。现在,我通过以下方式拥有所有功能:
const string DLL_Path = "path\\to\\my\\dll.dll";
[DllImport(DLL_Path,
CallingConvention = CallingConvention.StdCall,
CharSet = CharSet.Ansi)]
public static extern int MyFunction1();
[DllImport(DLL_Path,
CallingConvention = CallingConvention.StdCall,
CharSet = CharSet.Ansi)]
public static extern ErrorCode MyFunction2(int id);
[DllImport(DLL_Path,
CallingConvention = CallingConvention.StdCall,
CharSet = CharSet.Ansi)]
public static extern ErrorCode MyFunction3(string server, byte timeout,
ref int connection_id, ref DeviceInfo pInfos);
[DllImport(DLL_Path,
CallingConvention = CallingConvention.StdCall,
CharSet = CharSet.Ansi)]
public static extern ErrorCode MyFunction4([MarshalAs(UnmanagedType.LPArray)] byte[] pVersion,
ref int psize);
[DllImport(DLL_Path,
CallingConvention = CallingConvention.StdCall,
CharSet = CharSet.Ansi)]
public static extern ErrorCode MyFunction5(int errorcode,
[MarshalAs(UnmanagedType.LPTStr)] string pmsg, ref int psize);
这是相当不顺眼的:属性的重复似乎效率低下并且破坏了函数原型(prototype)的可读性。特别是因为我有大约 20 或 30 个函数要导入。
我想知道我是否可以在某个地方只使用一次 [DllImport(DLL_Path, CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Ansi)]
部分并更清楚地识别函数定义,就像这样伪代码:
const string DLL_Path = "path\\to\\my\\dll.dll";
// some code defining a section which tells that the next functions are DLLImport
[DllImport(DLL_Path, CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Ansi)]
{
public static extern int MyFunction1();
public static extern ErrorCode MyFunction2(int id);
public static extern ErrorCode MyFunction3(string server, byte timeout, ref int connection_id, ref DeviceInfo pInfos);
public static extern ErrorCode MyFunction4([MarshalAs(UnmanagedType.LPArray)] byte[] pVersion, ref int psize);
public static extern ErrorCode MyFunction5(int errorcode, [MarshalAs(UnmanagedType.LPTStr)] string pmsg, ref int psize);
}
这可能吗?
我在 SO 中发现了这个问题:Shorten amount of DllImport in C#?但它建议通过 LoadLibrary
和 GetProcAddress
动态加载函数,我觉得这不太可读。
最佳答案
不,没有办法将属性缩减为单个声明。您需要将属性应用于所有方法。
但您至少可以将属性声明缩短为 [DllImport(DLL_Path)]
,因为您为 CallingConvention
指定的值和 CharSet
与默认值相同。
关于C#:一个属性用于多个声明 (DLLImport),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15781627/
我有一个类,里面有一些静态成员函数。假设类 B,这个类有一个基类,它来自第三方库,比如 A。现在类 A 已经用 dllimport 和用mingw 我可以毫不费力地构建 sharedlibs 或那个类
在 C# 中,我有这个: [DllImport("user32.dll", EntryPoint = "GetDesktopWindow")] public static extern Int
我正在尝试编写一个使用 C++ 中定义的函数的 WPF 应用程序。 C++ 应用程序被编译为 DLL。 我正在做的是使用 DllImport 属性导入函数并使用它。这在我的机器上运行良好,但是当我尝试
有没有办法为一组外部函数指定相同的 DllImport 属性,类似于 extern "C"{ … } ?我不想为每个函数声明重复它:-) 最佳答案 没有。避免它的唯一方法是在 C++/CLI 中编写一
我正在尝试将短类型的参数传递给从 DLL 导入的 C++ 非托管函数。在我的 C++ DLL 代码中,我有以下函数: __declspec(dllexport)void ChangeIcon(char
我有一个第三方 c dll,我想在我的 c# 项目中使用它。我设法导入了一种读取文件头的方法。现在我想访问读取数据的方法。我认为问题在于包含字符串数组的结构,因此我尝试了各种方法,例如 StringB
如何使用反射枚举程序集中的所有 DLLImports? 最佳答案 遍历每个类中的每个方法,并检查 GetCustomAttributes(typeof(DllImportAttribute)) 是否返
在 asp.net 中,如果我使用 DLLImport 调用一个 dll,有人知道该实例的范围吗?它是在应用程序级别,所以任何后续调用都会转到 dll 的同一实例,直到应用程序结束? 我有一个 dll
我想了解 DllImport 的真正工作原理。我需要一个通俗易懂的英语解释——意思是简单的解释。 它是否与 DLL 中导出的方法静态链接,如“包含文件”指令/静态库? 还是在C#程序中到达执行点时动态
我正在尝试编写一个 C# 托管类来包装 SHGetKnownFolderPath,到目前为止它可以在 Vista 上运行,但由于在 shell32.dll 中找不到正确的函数而在 XP 上崩溃,正如预
我有一个带有 C++ 组件的 C# 应用程序。我在模块之间使用 DllImport 进行通信。该应用程序可以正常工作很多天,有时会意外崩溃。 [DllImport("recorder", Callin
这个问题在这里已经有了答案: Loading a 32-bit dll in a 64-bit process [duplicate] (1 个回答) 关闭 8 年前。 我希望我的 C# 应用程序有
我正在通过 C# 与 native 第 3 方 C++ DLL 进行交互,所提供的互操作层如下所示: C#: [DllImport("csvcomm.dll")] public static exte
我正在使用 [DLLImport] 属性访问我的 .NET 代码中的一堆 C++ 函数。现在,我通过以下方式拥有所有功能: const string DLL_Path = "path\\to\\my\
假设在 Native.dll 中有一个 c++ 方法 int NativeMethod(double, double *)。我第一次尝试从托管代码调用此方法(假设我不需要指定入口点) [DllImpo
我正在做一个P/Invoke,我正在使用下面的方法 [DllImport("Authz.dll", SetLastError = true)] public static extern BOO
static class Class { public static void methodRequiringStuffFromKernel32() { // c
我正在使用 [DllImport]属性将 native DLL 导入我的应用程序,但它加载的 DLL 不在本地 bin 文件夹中。它是从系统的其他地方加载的,但我不知道在哪里。 它适用于我的开发机器,
我刚刚在 C# 中遇到了 DllImport 的奇怪行为,我无法解释。我想知道它是如何可能的,以及我可以在哪里阅读它。案例是通过 DllImport 可以调用不真正导出表单 dll 的函数。就我而言,
我尝试使用 P/Invoke 将示例 .net 应用程序转换为 javascript JSIL . C# 代码: [DllImport("JSTestLib", EntryPoint = "Get42
我是一名优秀的程序员,十分优秀!