Closed sebbarg closed 1 year ago
Top op file:
In code:
Before: string someString = null;
After: string? someString = null;
Be wary of types that are used with serialization (e.g. models read and written to litedb). These fields should normally be nullable (i.e. have a question mark appended to the type).
Enable #nullable everywhere. Once we're through all files, enable it globally.