gpt4 book ai didi

c# - 有没有办法在C#中组合“is”和“as”

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

Possible Duplicate:
C# - Assignment in an if statement




我发现自己在接下来的多次中

if (e.row.FindControl("myLiteral") is Literal)
{
(e.row.FindControl("myLiteral") as Literal).Text = "textData";
}


有没有办法替换“ if”部分并简化设置程序:

(e.row.FindControl("myLiteral") <some operator that combines is and as> .text = "textData";


编辑:
我应该在之前提到这个
我想完全删除“如果”。
仅当e.row.FindControl是文字时,“某些运算符”才应在内部执行此操作并设置“ .text”

最佳答案

通常,我不会像这样将它们结合在一起-我要么使用强制类型转换,要么使用as和null检查:

Literal literal = e.row.FindControl("myLiteral") as Literal;
if (literal != null)
{
literal.Text = "textData";
}

关于c# - 有没有办法在C#中组合“is”和“as” ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7477790/

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