Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 c# 中的一些数据写入 csv 文件,当我添加任何内容而不检查它是否为空时,某些字段显示为空,我希望它们在 excel 格式中为空。所以我做了:
if (a!= null) insert(a) else insert("");
这是 3 行,我想知道是否有更简单的方法可以做到这一点,因为我必须测试多个条目。
您可以使用空合并运算符( ??):
??
insert(a ?? "");