Reporter | Hadi Hariri (hadihariri) |
---|---|
Created | Jan 4, 2012 11:55:08 AM |
Updated | Jan 4, 2012 11:55:37 AM |
Priority | Critical |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Sergey Coox (coox) |
Subsystem | No subsystem |
Affected versions | 6.1.1 |
Fixed in build | No Fixed in build |
I have a method
void Foo(Bar bar)
I have a code that calls it
this.Foo(someBar);
I change it to
this.Foo(someBar, thisWillBeAnInt:5);
I expect alt+Enter to allow me now to add a parameter from that usage but all it offers me is to create an overload
If I make the 2nd argument non-named ReSharper does give me an option to add a parameter for the int
void Foo(Bar bar)
I have a code that calls it
this.Foo(someBar);
I change it to
this.Foo(someBar, thisWillBeAnInt:5);
I expect alt+Enter to allow me now to add a parameter from that usage but all it offers me is to create an overload
If I make the 2nd argument non-named ReSharper does give me an option to add a parameter for the int