Reporter | Igal Tabachnik (hmemcpy) |
---|---|
Created | Aug 29, 2012 4:17:55 PM |
Updated | Apr 20, 2018 6:53:36 PM |
Resolved | Apr 20, 2018 6:17:46 PM |
Subsystem | Refactorings - Inplace |
Assignee | Alisa Afonina (alisa.afonina) |
Priority | Normal |
State | Obsolete |
Type | Bug |
Fix version | No Fix versions |
Affected versions | 7.0.1 |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
public static void Main()
{
dynamic value = new ExpandoObject();
DoSomethingWithValue(value); // <-- rename doesn't work here
}
private static void DoSomethingWithValue(dynamic value) // <-- rename works here, but doesn't rename the callsite, resulting in a compilation error
{
// do something with value
}
Renaming the actual method works, but doesn't update the caller!