double? int?

C# 值类型加上?表示可空类型(Nullable 结构),就是一种特殊的值类型,它的值可以为null

例:

int? float? stirng? double?

原文地址:https://www.cnblogs.com/yaosj/p/10333889.html