C# property ending with ?
Posted
by MicMit
on Stack Overflow
See other posts from Stack Overflow
or by MicMit
Published on 2010-05-19T08:39:21Z
Indexed on
2010/05/19
9:10 UTC
Read the original article
Hit count: 132
What does that mean ?
public bool? Verbose { get; set; }
When applied to string? , there is an error
Error 11 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'
© Stack Overflow or respective owner