Can you implement an interface explicitly?
- Yes, explicit implementation allows a class to implement interface members
separately.
class Car : IDriveable
void IDriveable.Drive() => Console.WriteLine("Explicit drive");
separately.
class Car : IDriveable
void IDriveable.Drive() => Console.WriteLine("Explicit drive");