CxStatementBlock

Description

sealed class Tinman.Core.Cx.Statements.CxStatementBlock

Derived from

CxStatement abstract
ICxStatementsContainer

A block with zero or more statements that are executed sequentially:

{
  a = 1;
  b = 2;
  ...
}

ICxStatementsContainer.Statements returns the statements in this block.

Public / Constructors

Cx​Statement​Block


public constructor CxStatementBlock → (1)

statements opt : IBagConst<CxStatement> = null

The statement list or null for an empty list. See ICxStatementsContainer.Statements.

Creates a new instance of CxStatementBlock.