CxStatementDebug

Description

sealed class Tinman.Core.Cx.Statements.CxStatementDebug

Derived from

CxStatement abstract
ICxStatementsContainer

A region with zero or more statements that are executed sequentially when in DEBUG mode:

#if DEBUG
  a = 1;
  b = 2;
  ...
#endif

ICxStatementsContainer.Statements returns the statements in this debug region.

Public / Constructors

Cx​Statement​Debug


public constructor CxStatementDebug → (1)

statements opt : IBagConst<CxStatement> = null

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

Creates a new instance of CxStatementDebug.