-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get rid of some more nullable warnings
Not all nullable warnings will be able to be removed as long as this code still targets net461; for example, string.IsNullOrEmpty guarantees that the string isn't null, but the annotations required for the compiler to know that weren't added until the .NET Core era. So until the projects targets a modern version of .NET, the only way to get rid of nullable references like these is to use the ! operator every time, which will quickly get tedious.
Showing
3 changed files
with
13 additions
and
12 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
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