tags:

views:

68

answers:

2

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.

+1  A: 

Snippy (and reflector addin)?

Marc Gravell
+2  A: 

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.)

LukeH
Thanks a lot for your update!
ppolyzos