C#小知识锦集

1、cs文件制成dll

使用csc.exe编译,
命令是csc /t:library /r:System.Web.dll /r:System.dll /out:***.dll ***.cs

(可以用cmd工具(注意粘贴板及TAB键的使用),也可以写成一个批处理文件.bat,其内容为“C:\WINDOWS.0\Microsoft.NET\Framework\v1.1.4322\csc /t:library /r:System.Web.dll /r:System.dll ”);

/out:Class1.dll *.cs)

写批处理!
csc /t:library /r:System.Web.dll /r:System.dll /out:1.dll 1.cs
csc /t:library /r:System.Web.dll /r:System.dll /out:2.dll 2.cs
...
csc /t:library /r:System.Web.dll /r:System.dll /out:n.dll n.cs

你可能感兴趣的:(C++,c,Web,C#,Microsoft)