We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8872dc2 commit f49da27Copy full SHA for f49da27
docs/csharp/whats-new/csharp-14.md
@@ -34,7 +34,7 @@ private string _msg;
34
public string Message
35
{
36
get => _msg;
37
- set => _msg = value ?? throw new NullArgumentException(nameof(value));
+ set => _msg = value ?? throw new ArgumentNullException(nameof(value));
38
}
39
```
40
0 commit comments