C# nullable string error

System.String is a reference type and already “nullable”.

Nullable<T> and the ? suffix are for value types such as Int32, Double, DateTime, etc.

Leave a Comment