Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any free, small, fast, thing for compiling C# .net 3.5 console apps on windows?

Is there any free, small, fast, thing for compiling C# .net 3.5 console apps on Windows? I want something to write c# windows consol apps using ffmpeg (using tao framework) on my home eee pc; can anyone help me with it?

like image 431
Rella Avatar asked Nov 27 '22 03:11

Rella


1 Answers

Sure, csc.exe

It's the official C# compiler, included with the .net installation, and what Visual Studio uses--but you can easily use it from the command line:

Command-line Building With csc.exe


Update: another useful tool, which might be more of what you're after (and is still supported/maintained) is LINQPad. It's main purpose is for building LINQ statements, but it's fully capable of executing regular .NET code as well.

like image 152
STW Avatar answered Dec 05 '22 11:12

STW