C#C
C#7mo ago
Cat4Life

✅ Can someone explain why this doesn't work?

public interface IFace
{
void InterfaceFunc()
{
}
}

public class ClassA() : IFace
{
}

var x = new ClassA();
x.InterfaceFunc(); << this is not fouind
Was this page helpful?