Variable type ending with ?

前端 未结 7 2068
别跟我提以往
别跟我提以往 2021-01-04 11:08

What does ? mean:

public bool? Verbose { get; set; }

When applied to string?, there is an error:

7条回答
  •  孤城傲影
    2021-01-04 11:42

    bool? is a short form for System.Nullable. Only value types are accepted for the type parameter and not reference types (like e.g. string).

提交回复
热议问题