I have been using Snippet Compiler for a few years, and it's great. Unfortunately, it isn't getting maintained, and is falling behind. Doesn't support .NET 4, which we recently switched to, and even some C# 3 features like extension methods get flagged as errors (though they do compile).
Alternatives?
Update: I wanted to post back here after having spent a lot of time with LINQPad since writing this question. It is now one of my critical tools. Here's why:
- It loads fast. Start typing right away. F5 and see the results.
- It lets you write simple expressions, statements, or full programs. This gives me a lot of flexibility for the kind of testing I want to do. I'll usually start with Expression, move to Statement, and then sometimes switch to Program if I start writing methods and types.
- It directly talks to databases and will generate simple starter queries and types for you (like "MyTable.Take(50)" and wire up all the db access and everything). Way faster than doing the same thing in SQL Studio or VS.
- You can point it at your own assemblies. So I'll be in VS and want to test out some function or class I wrote. I'll hit F4, map in the assembly, import a namespace or two, and go.
- I'll often save that .linq file off for later as a "Foo Environment" (where Foo is the name of the assembly).
- LINQPad even lets you set these as defaults. So I have a couple core libraries with helper functions etc that I always want to be available in my test snippets and expressions, so I've set those to be by default included (and the necessary namespaces) in all fresh queries by default.
- Dude that wrote it is smart. He realized we'd be doing fast iteration on code, so it will (optionally, and on by default) reload the app domain every time.
- This means you can build your assembly, go back to LINQPad and hit F5 and it will use the new one. No locks maintained, automatic switching to new versions.
- This might be the key feature of LINQPad and it has completely stopped me from using Powershell ISE for this kind of thing. I hope one day to see a LINQShell!
- It has really good Intellisense if you pay the upgrade. It doesn't seem like a critical feature but once you have it you will understand why it was worth the upgrade. Discoverability is important when doing fast little scripty things.
- It's great for demoing code functionality to other people, especially in a lecture type environment. I don't demo in VS any more.
- The "Dump" that you can tack onto every expression is totally awesome. Very sophisticated, configurable reports that use reflection to look deeply inside objects and streams. Do not use Console.WriteLine, use Dump. It's an object extension method.
- LINQPad is useable from Visual Studio for debugging visualization. You can add a reference to LINQPad from your app to Dump() any expression to HTML (yes, in the watch window!), then use the HTML visualizer in VS to show the nicely formatted expression in a popup, just as if it were in LINQPad.
- Note that there's a VS addin that supposedly does this automatically for you but I never got it to work reliably. I stick with the manual method that always works.
- It's well-maintained. It had 4.0 support early and currently supports the Async CTP. Not that I use async yet, just happened to notice.
The only thing I can think of that's missing is a way of calling LINQPad from the command line to execute .linq files as scripts and gather the results in a machine readable form. We have a hack someone wrote here that they're using to automate some queries or something, but it would be great if LINQPad supported automation directly. Well, here's another request for a LINQShell!
Anyway, I use this tool multiple times every day as you might gather from my love letter above. I suggest you at least check it out, the free version is insanely feature-filled. But then pay the man, it's cheap and will support this awesome project.