Если у меня
public class AImplementation:IAInterface
{
void IAInterface.AInterfaceMethod()
{
}
void AnotherMethod()
{
((IAInterface)this).AInterfaceMethod();
}
}
Как вызвать AInterfaceMethod() из AnotherMethod() без явного литья?