In some languages, there are things like these:
Lisp:
(let ((x 3))
(do-something-with x))
JavaScript:
let (x = 3) {
doSomethingWith(x);
}
Is there anything like this in C#?
|
|
In some languages, there are things like these: Lisp:
JavaScript:
Is there anything like this in C#?
|
||
|
|
|
|
You can limit the scope of a value type variable with curly brackets.
The last line will generate a compiler error as This will work for object types as well, but doesn't guarantee when the object will be disposed after it falls out of scope. To ensure that object types which implement IDisposable are disposed in a timely manner use
|
|||
|
|
|
You can use block to scope names. From C# Specification:
|
||
|
|