将下拉集合发送到接受控件集合的方法时出错

发布于 2024-10-04 03:36:49 字数 684 浏览 9 评论 0原文

我试图将 Dropdown 控件的集合作为参数传递给采用 Control 类型的集合作为输入的方法。执行时出现以下错误:

“无法将类型为 'd__a31[System.Web.UI.WebControls.DropDownList]' 的对象转换为类型为 'System.Collections.Generic.IEnumerable1[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.IEnumerable1[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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

策马西风 2024-10-11 03:36:49

使用

IEnumerable<Control> dropDownControlsInCurrentRow;

而不是

IEnumerable<DropDownList> dropDownControlsInCurrentRow;

use

IEnumerable<Control> dropDownControlsInCurrentRow;

instead of

IEnumerable<DropDownList> dropDownControlsInCurrentRow;
玻璃人 2024-10-11 03:36:49

在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文