Is it possible to define an interface in C# which has a default implementation? (so that we can define a class implementing that interface without implementing that particul
it is possible in C# 8.0. You can add a method with default implementation. You will have to change your target framework version to latest to use this feature.