下面就为大家分享一下在vs2005中生成dll文件的步骤图文版
新建项目> 模板 > windows > 类库
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ClassLibrary2 { public class Class1 { private int _age; public int Age { get { return _age; } set { _age = value; } } } }
当然代码根据自己需要写,要不就参考 https://www.nhooo.com/article/69020.htm
右键 生成
然后 通过 在文件资源管理器中打开文件夹找到生成的dll文件
VS2015生成64位dll文件
导入自己的源文件,准备生成DLL文件。也可以自己创建。
右键项目,进入属性,修改Configuration Type 为 DLL。
修改为64位,Configureation Manager ->
->Active solution platform ,x新添加一个x64。 下面的会自动变为x64.
然后运行,会生成一个x64\debug的目录,里面即为64位DLL.
错误集:
1. Error D8016 '/ZI' and '/Gy-' ......
解决:Debug -> c/c++里,修改为Program Database(/Zi).
2.LNK2001,LNK2019,添加两个静态库。ws2_32.lib" , "winmm.lib。