ECMA-334 C# Language Specification15.2: Blocks |
A block permits multiple statements to be written in contexts where a single statement is allowed.
{
statement-list
opt }
A block consists of an optional statement-list
(15.2.1), enclosed in braces. If the statement list is omitted, the block is said to be empty.
A block may contain declaration statements (15.5). The scope of a local variable or constant declared in a block is the block.
Within a block, the meaning of a name used in an expression context must always be the same (14.5.2.1).
A block is executed as follows:
The statement list of a block is reachable if the block itself is reachable.
The end point of a block is reachable if the block is empty or if the end point of the statement list is reachable.
In This Section: