如何将.cs文件编译成DLL?
我的项目名称是WA.在bin
编译后的我的文件夹中,我发现:
WA.exe
WA.vshost.exe
WA.pdb
leppie.. 16
你必须编译它:
csc /t:library source.cs -> source.dll
Winston Smit.. 6
你在使用Visual Studio吗?
如果在VS中创建类库项目,添加.cs文件然后编译项目,输出将是.dll文件.
你必须编译它:
csc /t:library source.cs -> source.dll
你在使用Visual Studio吗?
如果在VS中创建类库项目,添加.cs文件然后编译项目,输出将是.dll文件.