Compile C# Class without VS 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to compile a simple c# class file without having to create project in
visual studio .net...I know that I can use sharpdevelop, but I don't need all
of it's fancy features, I just want a simple program that allows you to write
a c# class and then compile it!

I have been searching the net for this application I once saw that will
allow you to create a c# class and then compile it! I forgot what the name
of it was but I know that it's available out there! Can anyone tell me the
name of the application and where to download it at?

Thanks in advance!
Ed_P.
 
Ed_P. said:
I want to compile a simple c# class file without having to create project in
visual studio .net...I know that I can use sharpdevelop, but I don't need all
of it's fancy features, I just want a simple program that allows you to write
a c# class and then compile it!

Any text editor can create a C# program. You can compile it with csc.exe,
which comes with the .NET framework. If your build becomes more complex,
and you want to automate it, you can use ANT or NANT, both of which are free
for downloading.
 
Back
Top