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 saying Source 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


Answer this question

Command Issues

  • Kaychoro

    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.


  • Command Issues