Add Using Declarations Notes

This commit is contained in:
Marcello Lamonaca 2021-02-02 11:29:48 +01:00
parent 58d9b9fbf0
commit ef39957a01

View file

@ -936,13 +936,22 @@ yield return <expression>; // returns the results one at a time.
yield break; // concludes the iteration yield break; // concludes the iteration
``` ```
### Context Statement ### Context Statement & Using Declarations
```cs ```cs
using (assignement) using (Type obj = new Type()) // obj disposed at the end of the using block
{ {
// code here // 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 ### `Cheched`/`Unchecked` Statements