What version of C# stopped requiring protected interface members to be implemented explicitly?
In C# 8, interfaces were upgraded to allow protected
members, among other access modifiers. At the time, implementing classes were required to explicitly implement such protected
interface members.
What version of C# stopped requiring protected interface members to be implemented explicitly?
In C# 8, interfaces were upgraded to allow protected
members, among other access modifiers. At the time, implementing classes were required to explicitly implement such protected
interface members.