我需要添加许多可为 null 的 int 类型的变量。我使用空合并运算符将其降低为每行一个变量,但我觉得有一种更简洁的方法可以做到这一点,例如,我不能以某种方式将这些语句链接在一起,我之前在其他代码。
using System;
namespace TestNullInts
{
class Program
{
static void Main(string[] args)
{
int? sum1 = 1;
int? sum2 = null;
int? sum3 = 3;
//int total = sum1 + sum2 + sum3;
//int total = sum1.Value + sum2.Value + sum3.Value;
int total = 0;
total = total + sum1 ?? total;
total = total + sum2 ?? total;
total = total + sum3 ?? total;
Console.WriteLine(total);
Console.ReadLine();
}
}
}