Project
ReSharper
Priority
Normal
Type
Feature
Fix versions
Mirabile Futurum
State
Open
Assignee
Sergey Shkredov
Subsystem
Refactorings
Affected versions
No Affected versions
Fixed in build
No Fixed in build
  • Created by   Maxim Babenko
    5 years ago (05 Aug 2006 21:28)
  • Updated by   Stefan
    13 months ago (12 Apr 2011 12:16)
  • Jira: RSRP-15238
    (history, comments)
 
RSRP-15238 Change signature for generics
1
Issue is visible to: All Users
  The issue is visible to the selected user group only
Add an ability to reorder parameter types of classes and methods.
Comments (1)
 
History
 
Linked Issues (?)
 
TeamCity Changes (0)
 
Stefan
  Stefan
12 Apr 2011 12:16
13 months ago
+1 but include the possibility to add a new generic parameter with default value similar of adding a new parameter to a method with default value (see http://devnet.jetbrains.net/thread/303411? )
class Foo<T> { }
class FooDerived : Foo<T>
//"Change signature on Foot<T>: Add parameter and update usages with default value of "int"
class Foo<T, T2> {}
class FooDerived : Foo<T, int>