Zuhaib
Zuhaib

Reputation: 1420

ASP.NET MVC Extension Methods Hint Shows The Extended Type In Param List

The hint for extension methods on a normal class file and the one shown on my aspx page do not match.

The hint shown on the aspx page also shows the type that is being extended. Its annoying.

Imaget http://img194.imageshack.us/img194/8208/29713561.jpg

Can anybody tell me what wrong with my Visual Studio? I am using VS 2008 am I missing any fixes?

Upvotes: 0

Views: 153

Answers (1)

Joseph
Joseph

Reputation: 25523

There's nothing wrong with your Visual Studio, that's just how extension methods are shown. The object (in your case the HtmlHelper object) is actually a parameter of the extension method, which is why you see it that way.

Upvotes: 1

Related Questions