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.

Snippet compiler is a small program that allows you to compile code snippets without creating new projects in visual studio. The bad thing is that is has not been updated for a while since .NET Framework 3.5. Bad thing is that you can't make LINQ work with Snippet.

I am wondering if you have any alternative tool to suggest.

share|improve this question
3.5 does include LINQ - it just doesn't include Entity Framework; do you mean 3.0? – Marc Gravell Jun 28 '10 at 9:29
Indeed 3.5 does include LINQ but can't make it work with Snippet compiler. I edited the question. Thanks for the comment. – Paris Polyzos Jun 28 '10 at 12:03
1  
You can use LINQ with Snippet Compiler. I've updated my answer to explain how. – LukeH Jun 28 '10 at 13:52
possible duplicate of Looking for replacement for Snippet Compiler – Attila May 28 '12 at 1:57

3 Answers

up vote 7 down vote accepted

LINQPad

LINQPad itself is free, but it's well worth paying for the auto-completion license too.

Update...

If you just want to use LINQ with Snippet Compiler then you'll need to add a reference to System.Core.dll and then include a using System.Linq; directive at the top of your .cs file. (To add the reference, go to Tools->References, select System.Core.dll from the list and then click OK.)

share|improve this answer
Thanks a lot for your update! – Paris Polyzos Jun 28 '10 at 15:58

Snippy (and reflector addin)?

share|improve this answer

There is a good replacement on code.google.com: Sharp Snippet Compiler

Here is the project description:

It is a tiny C# IDE with all the necessary basic tools:

  • variables watch window
  • stepping through the code
  • assembly references
  • light and fast
  • syntax highlighting
  • IntelliSense code-completion
  • supports .NET 3.5 features

UPDATE

It seems to crash under Windows 7 Ultimate 64bit operating system

share|improve this answer

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.