在 Microsoft Visual Studio .NET 2003 中 怎样制作dll

来源:百度知道 编辑:UC知道 时间:2024/06/02 04:39:44
在 Microsoft Visual Studio .NET 2003 中 没有 csc.exe
怎么做dll 啊

3种方式:
1、命令行方式csc /target:library /out:Sample.dll Sample.cs
2、在新建项目时选择Class Library
3、项目-〉属性-〉常规中的输出类型改为“类库”

照MSDN的例子做.

我也想知道的!