Reporter |
|
---|---|
Created | Nov 20, 2009 4:16:17 PM |
Updated | Apr 9, 2018 3:47:39 PM |
Subsystem | Parameter Info |
Assignee | Sergey Kuks (coox) |
Priority | Normal |
State | Submitted |
Type | Cosmetics |
Fix version | No Fix versions |
Affected versions | No Affected versions |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
In Intellisense, when an extension method is selected, ie: a method declared like this:
public static class AnyNsExtensions
{
public static void MyExtensionMethod( this string s, int length )
{ ... }
}
The first parameter "string" should not be displayed. It is of no use as you know the type of the variable that you are currently "browsing".
Keep in mind: "the less is the more".
public static class AnyNsExtensions
{
public static void MyExtensionMethod( this string s, int length )
{ ... }
}
The first parameter "string" should not be displayed. It is of no use as you know the type of the variable that you are currently "browsing".
Keep in mind: "the less is the more".