Remove notes about func arg null check

since it has been delayed
This commit is contained in:
Marcello 2021-09-23 19:47:23 +02:00
parent 3734f966ca
commit 02c0a04aad

View file

@ -564,7 +564,6 @@ variable is null
variable is not null
// null parameter checking [C# 10]
Method(Type arg!!) {} // will throwArgumentNullException if arg is null
ArgumentNullException.ThrowIfNull(obj);
```