[Solved] Can anyone explain what is the default interface implementation in C# 8.0? [closed]


Default implementations is a feature in C# 8.0 that an interface member can now be specified with a code body, and if an implementing class or struct does not provide an implementation of that member, no error occurs. Instead, the default implementation is used.

Read more here: Default Interface Implementation

solved Can anyone explain what is the default interface implementation in C# 8.0? [closed]