From ef39957a01a4c47ff1b1f3f0ac2ab0fecf0857e3 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Tue, 2 Feb 2021 11:29:48 +0100 Subject: [PATCH] Add Using Declarations Notes --- .NET/C#/C#.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.NET/C#/C#.md b/.NET/C#/C#.md index a4ebec9..35fb6be 100644 --- a/.NET/C#/C#.md +++ b/.NET/C#/C#.md @@ -936,13 +936,22 @@ yield return ; // returns the results one at a time. yield break; // concludes the iteration ``` -### Context Statement +### Context Statement & Using Declarations ```cs -using (assignement) +using (Type obj = new Type()) // obj disposed at the end of the using block { // code here } + +// or (C# 8+) +{ + // inside a code block (if, loop, function) + using Type obj = new Type(); // disposed at the end of the block + +} + + ``` ### `Cheched`/`Unchecked` Statements