Area-IDEFeature - Renamehelp wanted
Metriche repository
- Star
- (20.414 star)
- Metriche merge PR
- (Merge medio 6g 17h) (256 PR mergiate in 30 g)
Descrizione
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.