SyntaxFix
Write A Post
Hire A Developer
Questions
It's not possible to make reference types Nullable. Only value types can be used in a Nullable structure. Appending a question mark to a value type name makes it nullable. These two lines are the same:
int? a = null; Nullable<int> a = null;