Area-IDEFeature - Renamehelp wanted
Repository metrics
- Stars
- (20,414 stars)
- PR merge metrics
- (Avg merge 6d 17h) (256 merged PRs in 30d)
Description
interface IX
{
void M();
}
interface IY : IX
{
int A();
}
class C
{
void Foo()
{
IY y = null;
y.M();
}
}
Rename A to M.
Roslyn will show an unresolvable conflict, instead of casting the callsite to IX to call the base method.