Add support for C# 8.0 nullable reference types feature#532
Merged
joelmartinez merged 13 commits intomono:developfrom Jan 20, 2021
hiihellox10:fix-nullable-reference-types
Merged
Add support for C# 8.0 nullable reference types feature#532joelmartinez merged 13 commits intomono:developfrom hiihellox10:fix-nullable-reference-types
joelmartinez merged 13 commits intomono:developfrom
hiihellox10:fix-nullable-reference-types
Conversation
…, event and delegate implantation for nullable reference types. And some refactorings.
…and extension method, and a series refactorings.
…ix incorrect rendering of dimensional array of nullable value type. And some refactoring.
…expected-fsharp XML of tuple type.
…t, but can work in windows environment.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Roslyn team has written a good introduction about Nullable Reference Types and Nullable Metadata, the articles explain how is the feature designed and implemented.
Nullable reference types metadata is similar to dynamic type metadata they both have the same implement, so I improve the DynamicParserContext class and rename DynamicParserContext to IAttributeParserContext. Currently, the IAttributeParserContext has already supported parse both types of metadata.