If I have
public class AImplementation:IAInterface { void IAInterface.AInterfaceMethod() { } void AnotherMethod() { ((IAInterface)this)
You can introduce a helper private property:
private IAInterface IAInterface => this; void IAInterface.AInterfaceMethod() { } void AnotherMethod() { IAInterface.AInterfaceMethod(); }