【发布时间】:2011-08-13 17:24:51
【问题描述】:
我想要实现的是下面这样的东西,Visual Studio 抱怨,我不知道如何实现它:
public abstract class My_BaseControl<T> : T, IRightBasedUsability
where T : System.Web.UI.WebControls.WebControl
{
// Some methods that I want to have for all
//the extended asp.net controls along my application
//which implements IRightBasedUsability
}
【问题讨论】:
标签: c# .net asp.net generics inheritance