I've seen older posts here on SO, about one year old which would mean that they do not really cover .NET 4 or maybe even 3.5 on this topic. So here goes.
If you with reflection were to fetch parameters for the current method
ParameterInfo[] methodParams = MethodInfo.GetCurrentMethod().GetParameters();
Looping through each parameter will let you fetch the parameter-name however, there is only a "DefaultValue" which I guess is there because of the new Dynamic Parameters in .NET 4.
However, my question is; Is it still not possible to get the method parameter values without digging into the debugger API?
I know that there might be a design flaw if you even need to consider using this.