mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Add Using Declarations Notes
This commit is contained in:
parent
58d9b9fbf0
commit
ef39957a01
1 changed files with 11 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue