如何用C#建立一个DLL文件

来源:百度知道 编辑:UC知道 时间:2024/05/16 18:38:32
帮我去http://edu.itbulo.com/200604/98463.htm这里看看
然后,帮我分析下csc /target:library /out:Functions.dll Factorial.cs DigitCounter.cs 这个命令行怎么打啊 我不会啊
代码我多看懂了 但DLL文件建立不起来啊 谁来帮帮忙啊
先在这里 谢谢各位了
我用VS 2005 编译的
我是这样做了的啊 ,但是,好象不行啊

首先你必须要确定你的系统路径是否有Framework路径
然后
打cmd
到编写该cs文件的目录下
csc /target:library /out:Factorial.dll Factorial.cs
csc /target:library /out:DigitCounter.dll DigitCounter.cs