jessethepro
New member
- Joined
- May 15, 2024
- Messages
- 2
- Programming Experience
- 5-10
I do not understand the use of the "?" operator in this context.
Thanks,
Jesse
Thanks,
Jesse
List<T>
is valid. It is syntactic sugar for Nullable<List<T>>
.int?
is basically Nullable<int>
.