将下拉集合发送到接受控件集合的方法时出错
我试图将 Dropdown 控件的集合作为参数传递给采用 Control 类型的集合作为输入的方法。执行时出现以下错误:
“无法将类型为 'd__a31[System.Web.UI.WebControls.DropDownList]' 的对象转换为类型为 'System.Collections.Generic.IEnumerable
1[System .Web.UI.Control]'。”
知道我为什么会收到这个吗?
我的代码:
private void Caller()
{
IEnumerable<DropDownList> dropDownControlsInCurrentRow = currentRow.Controls.OfType<DropDownList>();
SetControlsVisibility(dropDownControlsInCurrentRow, false);
}
private void SetControlsVisibility(IEnumerable<Control> controlCollection, bool visibilityFlag)
{
foreach (ctrl in controlCollection) {
ctrl.Visible = visibilityFlag;
}
}
I am trying to pass a collection of Dropdown controls as a parameter to a method which takes a collection of type Control as input. While executing I get the following error:
"Unable to cast object of type 'd__a31[System.Web.UI.WebControls.DropDownList]' to type 'System.Collections.Generic.IEnumerable
1[System.Web.UI.Control]'."
Any idea why am I getting this?
My code:
private void Caller()
{
IEnumerable<DropDownList> dropDownControlsInCurrentRow = currentRow.Controls.OfType<DropDownList>();
SetControlsVisibility(dropDownControlsInCurrentRow, false);
}
private void SetControlsVisibility(IEnumerable<Control> controlCollection, bool visibilityFlag)
{
foreach (ctrl in controlCollection) {
ctrl.Visible = visibilityFlag;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
而不是
use
instead of
在 C# 4.0 中,由于 IEnumerable 中 T 的逆变性,上述代码可以工作。
在 C# 3.5 及更低版本中,您需要添加额外的 dropDownControlsInCurrentRow.Cast()
请参阅此链接 关于逆变 了解更多信息
In C# 4.0 the above code would work due to contravariance of T in IEnumerable.
In C# 3.5 and below you need to add an additional dropDownControlsInCurrentRow.Cast()
See this link on contravariance for more info