C#:解决添加xxx.dll的引用时报错,请确保xxx是有效的程序集或者COM组件
作者:互联网
问题:
解决方法有两种,如下:
1.代码中用dllImport语法引入:
using System;
using System.Runtime.InteropServices;
class Example
{
// Use DllImport to import the Win32 MessageBox function.
[DllImport("user32.dll", CharSet = CharSet.Unicode)]
public static extern int MessageBox(IntPtr hWnd, String text, String caption, uint type);
static void Main()
{
// Call the MessageBox function using platform invoke.
MessageBox(new IntPtr(0), "Hello World!", "Hello Dialog", 0);
}
}
2.WIN系统regsvr32命令注册dll
Regsvr32命令用于注册COM组件,是 Windows 系统提供的用来向系统注册控件或者卸载控件的命令,以命令行方式运行。WinXP及以上系统的regsvr32.exe在windows\system32文件夹下;2000系统的regsvr32.exe在winnt\system32文件夹下。
以管理员运行cmd
regsvr32 d:\xml\xxx.dll
标签:控件,MessageBox,C#,xxx,dll,using,regsvr32 来源: https://blog.csdn.net/u012541553/article/details/95488525