.Net
Implementing static methods on interfaces
If I have a method like public static IBook create(IDBRepository repository) { } How do I create an instance of IBook? You don’t create instances of interfaces per se. Think of an interface as a Read more…