这个返回类型怎么写呢
有一个方法,会返回TextBox或RadioButtonList或DropDownList等web控件,那么类型应该写什么呢?
有无可能做到呢?
public ??? GetWebControl
------解决方案--------------------public Control GetWebControl
------解决方案--------------------Control
------解决方案--------------------
public Control GetWebControl()
{
你的实现代码;
}
Control c= GetWebControl();
if(c is TextBox)
{
TextBox tb = c as TextBox;
}