Top "Explicit-implementation" questions

How to call an explicitly implemented interface-method on the base class

I have a situation, where two classes (one deriving from the other) both implement the same interface explicitly: interface I { …

c# interface base-class explicit-implementation
C# Language Design: explicit interface implementation of an event

Small question about C# language design :)) If I had an interface like this: interface IFoo { int Value { get; set; } } It's …

c# events interface explicit-implementation
How to emit explicit interface implementation using reflection.emit?

Observe the following simple source code: using System; using System.Linq.Expressions; using System.Reflection; using System.Reflection.Emit; namespace …

c# .net reflection reflection.emit explicit-implementation