-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nullable annotations for ErrorUtilities (#10272)
This will help with using these from new code that's nullable- aware. The biggest helpful bit is the `[NotNull]` ones that let the compiler know to assume that parameter is non-null in the rest of the method, which should eliminate the need for some `!`s after calling `VerifyThrowArgumentNull(whatever)`.
- Loading branch information
1 parent
3c12d57
commit 48003ed
Showing
4 changed files
with
71 additions
and
103 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Oops, something went wrong.