使用命令行编译c#类

时间:2012-03-15 17:52:28

标签: c# asp.net dll

我想在Visual Studio中使用命令行编译一个C#类。

在VB中我可以使用这一行:

vbc /t:tlibrary /out:bin/myclassdll.dll /r:system.dll /r:system.data.dll myclass.vb

我可以用C#做​​,我是否必须在web.config中添加一些内容?

感谢您的帮助。

2 个答案:

答案 0 :(得分:3)

csc /t:tlibrary /out:bin/myclassdll.dll /r:system.dll /r:system.data.dll myclass.cs

答案 1 :(得分:2)