I'm trying to execute a program using run from the command line ,my program takes 4 arguments and it connect to a web service .
so i execute this simple command csc Program.cs
I'm getting this error : error cs0234 The type or namespace Srd doesn't exist
But Srd is the name of Web reference. i tried this
csc /r:Web Reference/Srd Program.cs
But the problem persists.
So how to add it in the command line