菜鸟笔记:
- 先创建类库,再创建控制台应用程序进行引用
- dll文件生成位置:bin-debug-.dll
- 项目-添加引用-浏览dll文件位置并添加
- 注意引用dlltest(using dlltest;)
- 生成解决方案
类库dlltest
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace dlltest
{
public class Class1
{
public void ShowMessage()
{
Console.WriteLine("你调用了动态链接库!");
Console.ReadLine();
}
}
}
控制台应用程序ConsoleApplication
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using dlltest;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
dlltest.Class1 myTest = new dlltest.Class1();
myTest.ShowMessage();
}
}
}
若添加“using System.Windows.Forms;”之后提示“命名空间 system.windows 中不存在类型或命名空间名称 forms (是否缺少程序集引用 )”错误,如何处理?
添加引用,参考https://www.cnblogs.com/hugo07/p/5702021.html
来源:CSDN
作者:weixin_41241658
链接:https://blog.csdn.net/weixin_41241658/article/details/104505359