我在c#中找到了一个在类中带有以下变量声明的代码
public class Foo
{
public int ID { get; set; }
public int Age { get; set; }
public string name{ ger; set;}
public bool? Status { get; set; }
}
'是什么?'意思是,我刚刚找到了运算符“ ??”的答案和'?'为空,但不用于变量声明
答案 0 :(得分:2)
它使类型Nullable,通常是不可以的。
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/nullable-types/