* I asked it to explain the advantages and tradeoffs of using the #nullable declaration in a C# file or project, which it seemed to do well.
8/15
#Nullable
* I asked it to explain the advantages and tradeoffs of using the #nullable declaration in a C# file or project, which it seemed to do well.
8/15
Giving gdscript an honesty try just to make porting less of a headache in the future and uggghhh ... the fact that this can't be determined to be a gross error before runtime is wild
If you use C# with #nullable enabled you just remove entire swaths of classes of bugs like this with zero effort
sorry my gummy is beginning to hit and my mind has wandered back to my current work hurdle. a simple #nullable enable would fix so much right now
Took me a bit to get used to but now every time I open an old file and close it with #nullable enable I feel .. good
Make `ShadowTypeConverter` public and enabled nullable references `#nullable enable` (27737) https://github.com/dotnet/maui/issues/27737
np! nullables also aren't enabled in C# by default, you either have to tag a specific source file with #nullable enable or add <Nullable>enable</Nullable> to your .csproj file.