Link to home
Start Free TrialLog in
Avatar of dude1337
dude1337

asked on

C# Compilers

Does anyone know where I can get a free C# compiler that is easy for beginners.
Avatar of dude1337
dude1337

ASKER

If its a real good compiler, I'll up the points.
ASKER CERTIFIED SOLUTION
Avatar of Arthur_Wood
Arthur_Wood
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Could you give me the URL for the Microsoft .NET Framework SDK.
http://www.microsoft.com/net/

On the right side, in the Downloads box, click "Get the Microsoft .NET Framework"

BTW, this was the first result returned by Google on the search terms "microsoft .net framework".  
I'll accept the answer as soon as I verify the compiler works.  Thanks.
If it doesn't, don't blame Arthur, that would be a Microsoft problem.  
I won't blame Arthur, but could someone please tell me how to compile the notepad files when I'm done writing the program.  I got the Microsoft.Net Framework SDK installed but I can't figure out how to use it.  Please don't tell me to check the help section, that I have already tried.
the command line compiler for C# is csc.exe.  To compile prog.cs, type

csc prog.cs
Thanks, it works.