C#中的变量声明后的“?”是什么意思?

时间:2019-02-06 16:08:57

标签: c#

我在c#中找到了一个在类中带有以下变量声明的代码

public class Foo
{
    public int ID { get; set; }
    public int Age { get; set; }
    public string name{ ger; set;}
    public bool? Status { get; set; }
}

'是什么?'意思是,我刚刚找到了运算符“ ??”的答案和'?'为空,但不用于变量声明

1 个答案:

答案 0 :(得分:2)