May 2007 - Posts
The Expression Evaluator is a VSIP component that allows Visual Studio Languages to plug in a Debugger. It's what controls the information inside the locals,watch,auto, stack frame and immediate windows during a debugging session. Both VB and C# use this
Read More...
For previous articles in this series please see Part 1: Introduction Part 2: Method Calls Thus far in the series we've only lifted variables that are declared in the same block/scope. What happens if we lift variables in different scope? The answer is
Read More...
For previous articles in this series, please see Part 1 - The basics This part of the series will focus on how method calls are handled in closures. As stated in the previous article, the purpose of closures is to allow all operations inside a lambda
Read More...