-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C# 8.0 nullable types not supported #553
Comments
Hello. I will suppress this check for 8+ version. Can you say .net version which you use? (unity maybe version), etc Thanks |
I am using Consulo for working on a Mono project (and added GTK sharp NuGet package to make GTK apps). You also need to do null checks. For example let's say you have a method which takes in a string like this --
Now you are not allowed to call this method with null parameter like this -- This is only applicable for C# 8.0. Nothing is changed in C# versions before that. |
Thanks - .NET version just for testing. |
Hello. I added suppressing CS0453 for C# 8+ code for disable red code. After my review i create new issue - #554. Need some time for fix all those problems. Thanks |
Question mark should not be highlighted as syntax error as it specifies that variable is nullable string.
Implement nullable types in C# 8.0.
The text was updated successfully, but these errors were encountered: