What does ? mean:
public bool? Verbose { get; set; }
When applied to string?, there is an error:
The type 'string' must be a non-nullable value type in order to use it as parameter 'T' in the generic type or method 'System.Nullable'
|
|
From MSDN, about value types:
If you want to know more, MSDN has a great article regarding this topic. |
||||
|
|
|
The
You can use this struct directly, but the
Instead, you can write:
This doesn't work with string, as a string is a Reference type and not a Value type. |
||||
|
|
|
|
|||
|
|
|
Since |
|||
|
|
|
The ? operator indicates that the property is in fact a nullable type.
is equilvalent to
A nullable type is a special type introduced in c# 2.0 which accepts a value type as a generic praramater type and allow nulls to be assigned to the type. The nullable type only accept value types as generic arguments which is why you get a compile error when you try to use the ? operator in conjunction with the string type. For more information: MSDN Nullable Types |
|||
|
|
|
Only value types can be declared as Nullable. Reference types are bydefault nullable. So you cannot make nullable string since string is a reference type. |
|||
|
|
|
the handling you need these nullables to check if some value is null or not. It can be applied to only value types coz reference types can be null . |
|||
|
|