-
Notifications
You must be signed in to change notification settings - Fork 218
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
Implement C# 8.0 nullable standard #15
Comments
That would be very cool indeed and the best time to do it is before releasing. Happy to help with this one, should not be too hard. This blog describes the feature better https://devblogs.microsoft.com/dotnet/embracing-nullable-reference-types/ To quote from the blog:
|
@bgavrilMS or @pmaytak can you put this in the correct milestone please? not a breaking change. thx |
@bgavrilMS @jennyf19 @pmaytak @henrik-me |
Included in 0.2.0-preview release |
from @sujayvsarma and copied from Azure-Samples/active-directory-aspnetcore-webapp-openidconnect-v2#249
Even if the project is not C# 8.0, consider implementing the
nullable
standard by suffixing?
to all parameters and returns that may beNULL
.This will be a breaking changing internal to the library & to consuming code. Therefore, consider publishing the changes only during a major cycle.
The text was updated successfully, but these errors were encountered: