c# compiler

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!!!
 
J

Jon Skeet

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top