¡@

Home 

c# Programming Glossary: igeneric

Generic type parameter covariance and multiple interface implementations

http://stackoverflow.com/questions/14562047/generic-type-parameter-covariance-and-multiple-interface-implementations

with a covariant type parameter like this interface IGeneric out T string GetName And If I define this class hierarchy class.. using explicit interface implementation class DoubleDown IGeneric Derived1 IGeneric Derived2 string IGeneric Derived1 .GetName.. implementation class DoubleDown IGeneric Derived1 IGeneric Derived2 string IGeneric Derived1 .GetName return Derived1 string..