Area-IDEFeature - Renamehelp wanted
Metriche repository
- Star
- (20.414 stelle)
- Metriche merge PR
- (Metriche PR in attesa)
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.