C#C
C#7mo ago
Cat4Life

✅ How can I call methods on the class the is implementing my interface

I'm using default implementation
public interface IFace {

foo() {
implementingClass.DoSomething();
}
}

public c lass classA : IFace {
...
}
Was this page helpful?