c# compiler

  • Thread starter Thread starter andreas
  • Start date Start date
A

andreas

I've installed .Net Framework and I run the compiler by
dialing csc.exe but when I tried to compile my first C#
program the c:> prompt answers "fatal error cs2008:No
inputs specified"what can I do?Plz someone answer me!!!
 
andreas said:
I've installed .Net Framework and I run the compiler by
dialing csc.exe but when I tried to compile my first C#
program the c:> prompt answers "fatal error cs2008:No
inputs specified"what can I do?Plz someone answer me!!!

Read the error message: you haven't specified any input. You've got to
give it the name of a file to compile, eg

csc Test.cs
 
Back
Top