gpt4 book ai didi

c# - 这是一个很好的使用吗?运算符(operator)?

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

嗨,iam正在使用的程序当前正在使用if,else用来解决向文本框填充错误值的问题:

        if (!string.IsNullOrWhiteSpace(kundInformation.orgnr))
tbxOrgNr.TextBox.Text = kundInformation.orgnr;
else
tbxOrgNr.TextBox.Text = "";


我从来没有亲自使用过??之前,但是由于应用程序中有数百行相似的代码行,因此它确实很难阅读。可能会更好地使用:

tbxOrgNr.TextBox.Text = kundInformation.orgnr ?? "";

最佳答案

否。??仅检查null,而不检查空白。

而是创建一个扩展方法:

public static class StringExtensions
{
public static string ValueOrEmpty(this string value)
{
if (!string.IsNullOrWhiteSpace(value))
return value;
else
return "";

}
}


然后,您可以像这样使用它:

tbxOrgNr.TextBox.Text = kundInformation.orgnr.ValueOrEmpty();


当然,您也可以用另一种方式来生成更具可读性的代码:

public static class TextBoxExtensions
{
public static void SetTextOrEmpty(this TextBox tb, string value)
{
if (!string.IsNullOrWhiteSpace(value))
tb.Text = value;
else
tb.Text = "";

}
}


给出更好的分配:

tbxOrgNr.TextBox.SetTextOrEmpty(kundInformation.orgnr);

关于c# - 这是一个很好的使用吗?运算符(operator)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24696401/

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