Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Are there any light weight tools (preferably portable so I can put it in a memory stick) that can compile C# code snippets? I don't want to load Visual Studio, create a project and all to test a small code snippet.

Thansks!

share|improve this question

2 Answers

up vote 1 down vote accepted

How about http://rextester.com/rundotnet?

This is online - so always available - downsides are it's a little slow, so good for trying out simple things quickly - not so great if you're doing anything more complex.

Alternatively if you want an offline approach try Linq Pad

http://www.linqpad.net/

Although it was primarily created to debug LINQ statements - it actually works as a great lightweight general purpose IDE.

share|improve this answer
I never realized we could use LINQPad as a general purpose IDE. It works great! – tempid Jun 23 '11 at 16:56

SnippetCompiler would be one, though it hasn't been updated for a while so could be out of date.

Edit: See Looking for replacement for Snippet Compiler for more up-to-date alternatives

share|improve this answer
Looks good but it hasn't been updated since 2007 and no .NET 4 support. – tempid Jun 23 '11 at 15:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.