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)