From 1956ebbf0d1dc0245bfb83f295ee33d4fae75d83 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Tue, 10 Aug 2021 10:25:48 +0200 Subject: [PATCH] Remove no longer useful todo annotations --- DotNet/C#/C#.md | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index 2024b4a..961f688 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -1209,16 +1209,6 @@ type OutMethod(type param1, out type param2){} OutMethod(arg1, out var arg2); // create out variable on the fly ``` - - ### Returning Multiple Values with Tuples **Must** be C# 7+. @@ -2159,12 +2149,6 @@ Delegate lambda = (Type input) => { return ; }; Type variable = delegate { ; }; // ignore arguments of the method passed to the delegate ``` -### Captured Variables - - - - - --- ## [Events](https://www.tutorialsteacher.com/csharp/csharp-event)