From 02c0a04aad949ddafdd01420f8b93ff1331b8cf7 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Thu, 23 Sep 2021 19:47:23 +0200 Subject: [PATCH] Remove notes about func arg null check since it has been delayed --- DotNet/C#/C#.md | 1 - 1 file changed, 1 deletion(-) diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index fe734ae..08d7945 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -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); ```