Reporter |
|
---|---|
Created | May 18, 2009 2:17:15 PM |
Updated | Apr 6, 2018 2:42:06 PM |
Resolved | Apr 6, 2018 2:42:06 PM |
Subsystem | Refactorings |
Assignee | Alisa Afonina (alisa.afonina) |
Priority | Normal |
State | Obsolete |
Type | Bug |
Fix version | No Fix versions |
Affected versions | No Affected versions |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
Steps to reproduce:
1. Apply 'Extension Method to Plain Static' refactoring through SC popup menu to following code:
Wrong result: text is 'VS Command', but it should be something like 'Extension Method to Plain Static'.
1. Apply 'Extension Method to Plain Static' refactoring through SC popup menu to following code:
static class MyExtClass2. See text in the list of Undo button in the Standard toolbar.
{
public static void Ext{caret}(this IMyClass z)
{
z.Foo();
}
}
internal interface IMyClass
{
void Foo();
}
class MyClass : IMyClass
{
public void Foo()
{
}
}
Wrong result: text is 'VS Command', but it should be something like 'Extension Method to Plain Static'.