You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is how to get around annoying find and replace of
#nullable enable
If you're using .NET Framework 4.8 and want to manage nullable reference types, it's important to note that the full nullable reference types feature is not directly supported as it is a C# 8.0 feature, primarily designed for use with .NET Core 3.0 and above.
However, you can still enable or disable it in .NET Framework 4.8 projects by using the latest C# compiler (which supports C# 8.0 features) and setting up your project file appropriately. Unload .csproj and add this to your .csproj (or update to SDK style)
This is how to get around annoying find and replace of
#nullable enable
If you're using .NET Framework 4.8 and want to manage nullable reference types, it's important to note that the full nullable reference types feature is not directly supported as it is a C# 8.0 feature, primarily designed for use with .NET Core 3.0 and above.
However, you can still enable or disable it in .NET Framework 4.8 projects by using the latest C# compiler (which supports C# 8.0 features) and setting up your project file appropriately. Unload .csproj and add this to your .csproj (or update to SDK style)
The text was updated successfully, but these errors were encountered: