As of the Developer Preview version, VS11...
- edit-and-continue with 64-bit console apps STILL ARE NOT SUPPORTED
- watch (and immediate?) expressions with lambdas / anon delegates STILL ARE NOT SUPPORTED
- edit-and-continue being ok with edits to methods that contain lambdas STILL ARE NOT SUPPORTED
- edit-and-continue with Silverlight 5 (I DON'T KNOW)
Don't let any of this stuff put you off, however. There are plenty of new features in VS11, and there's still a year before it's released anyway. Who knows? They might decide to add support for one of these.
Also, by the way, it is very unlikely that they will support Edit and Continue with lambdas / LINQ / anon delegates in the future. Why? Well, it has to do with the way that these language constructs are converted to IL. They may seem simple in a CS language file, but even the most basic lambda expression (something like i => i + 1) is actually converted into a hidden class at compile-time. This goes beyond the scope of Edit and Continue. If you're interested, create a very simple program that uses lambdas or delegates, compile it, and open it up in .NET Reflector. (http://www.reflector.net/. You can get a 30 day trial if you don't want to buy it.) Select the language as "IL" and try to make sense of it!