Created
February 13, 2021 08:16
-
-
Save MelbourneDeveloper/1e62f0bb584c81dff01ed62a188c9251 to your computer and use it in GitHub Desktop.
Nullable Reference Types Minimal Console App Sample
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
| #nullable enable | |
| using Sample; | |
| using System; | |
| var testRecord = new TestRecord("Hi", null); | |
| Console.WriteLine(testRecord.NotNullableProperty); | |
| namespace Sample | |
| { | |
| public record TestRecord(string NotNullableProperty, string? NullableProperty); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment