标签: c# .net visual-studio csc
我正在尝试使用命令行中的run来执行程序,我的程序需要4个参数并连接到Web服务。
所以我执行这个简单的命令csc Program.cs
csc Program.cs
我收到此错误:error cs0234 The type or namespace Srd doesn't exist
error cs0234 The type or namespace Srd doesn't exist
但是Srd是Web引用的名称。 我试过这个
csc /r:Web Reference/Srd Program.cs
但问题仍然存在。
所以如何在命令行中添加它