下面就为大家分享一下在vs2005中生成dll文件的步骤图文版
新建项目> 模板 > windows > 类库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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; } } } } |
当然代码根据自己需要写,要不就参考
右键 生成
然后 通过 在文件资源管理器中打开文件夹找到生成的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。