Meta note: it is impossible to search for the word "this".
I've just run into a strange scenario in ASP.NET where the this keyword is required. But it's not for the purpose of resolving between local and instance variables, as you would see in a constructor.
Microsoft.Web.Mvc contains a class called ControllerExtensions, and I'm using the RedirectToAction(Expression<Action<TController>> action) overload. Maybe this is special because the overload is an extension.
RedirectToAction(c => c.Index()) won't compile, and it says Cannot convert lambda expression to type 'string' because it is not a delegate type. Now this sounds to me like it thinks I'm using the first overload which takes a string.
this.RedirectToAction(c => c.Index()) compiles fine. I can also call it statically, passing this as the first parameter.
Why can't the compiler figure out that I'm looking for the overload that takes an Expression, and use that? Because the method takes an expression of an action, and not just an action, that must be involved. I don't understand the Expressions namespace at all, so I don't know the purpose of using this parameter type.
Regardless of the answer to #1, why does simply adding
thisfix everything?
this, does the compiler search my methods before checking the base class? And that would explain it? – Tesserex Jun 8 '11 at 20:34this.inside the implementation ;) I know it's a controversial StyleCop guidance, but I actually think it's a good one, as it avoids odd issues like this entirely. – Reed Copsey Jun 8 '11 at 20:49