Command Issues

I am trying to type the following command in the comman prompt csc /t:module StringLib.cs...

I located the folder i keep the file in but i get the error from the cmd window sayingSource file 'StringLib.cs could not be found fate error cs2000: no inputs specified? Any Help...If any one has did the excersise in the Amit Kanlani book chapter 4 Step by step 4.13..please shed some light

[396 byte] By [Dpowers] at [2007-12-16]
# 1

You may need to prefix the file with the full path in order to compile it.

For example, if your file is in C:\DEV You would need to put:

csc /t:module "C:\DEV\StringLib.cs"
You also may need to change to the directory that the StringLib.cs file is located in. Hope this helps.

StevenR at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...