C# 中使用 DllImport 属性来导入一个Dll的多个函数
时间: 2024-02-24 16:55:35 浏览: 144
C# DllImport的用法
5星 · 资源好评率100%
在 C# 中,你可以使用 DllImport 属性来导入一个 DLL 的多个函数。下面是一个示例:
```csharp
using System.Runtime.InteropServices;
class Program
{
// 导入 user32.dll 的多个函数
[DllImport("user32.dll", CharSet = CharSet.Auto)]
public static extern int MessageBox(IntPtr hWnd, string text, string caption, uint type);
[DllImport("user32.dll", CharSet = CharSet.Auto)]
public static extern bool SetWindowText(IntPtr hWnd, string lpString);
static void Main(string[] args)
{
// 调用导入的函数
MessageBox(IntPtr.Zero, "Hello, world!", "MessageBox Example", 0);
SetWindowText(IntPtr.Zero, "New Title");
}
}
```
在上面的代码中,我们使用 DllImport 导入了 user32.dll 中的 MessageBox 函数和 SetWindowText 函数,并在 Main 函数中调用它们。注意,我们使用了不同的函数签名来声明这两个函数。
此外,我们还指定了 CharSet 属性,这是因为 C# 默认使用 Unicode 字符集,而有些 DLL 可能使用的是 ANSI 字符集。因此,我们需要指定 CharSet 属性来告诉 C# 使用正确的字符集。
阅读全文