I'm having a heck of an issue with the following: I have a generic class, with a constraint, that derives from a non-generic interface:
public abstract class DrilldownBase<W> where W : class, IDrilldown
This code is not correct through, because it thinks IDrilldown is a constraint, when its NOT. What I want is for the class DrilldownBase to inherit from IDrilldown. What am I missing?
Thanks.