gpt4 book ai didi

c# - 局部变量 C#

转载 作者:太空宇宙 更新时间:2023-11-03 17:17:35 27 4
gpt4 key购买 nike

如何获取局部变量?

我有这个代码

if (ctrl is Control)
{
Control c = (Control)ctrl;
foreach (object innerCtrl in c.Controls)
{
if (innerCtrl is System.Web.UI.WebControls.CheckBox)
if (((CheckBox)innerCtrl).Checked == true)
{
string resultado = (((CheckBox)innerCtrl).Text);
}
else
{
TextBox1.Text = "não";
}
}
}

如何获取变量resultado

最佳答案

这个答案对你的意思做了一个巨大的假设,“我怎样才能得到变量”(你已经拥有变量...)。

您可以在任何需要的范围内声明变量:

string resultado = null;
if (ctrl is Control)
{
Control c = (Control)ctrl;
foreach (object innerCtrl in c.Controls)
{
if (innerCtrl is System.Web.UI.WebControls.CheckBox)
{
if (((CheckBox)innerCtrl).Checked)
{
resultado = (((CheckBox)innerCtrl).Text);
}
else
{
TextBox1.Text = "não";
}
}
}
}

if (resultado != null) /* use the variable */

关于c# - 局部变量 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15388011/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com