_Codeblock 构造函数 | |
This constructor is used by the Macro Compiler
命名空间:
XSharp
程序集:
XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法 CONSTRUCTOR(
innerBlock AS ICodeblock,
cMacro AS STRING,
lIsBlock AS LOGIC,
lAddsMemvars AS LOGIC
)
public _Codeblock(
ICodeblock innerBlock,
string cMacro,
bool lIsBlock,
bool lAddsMemvars
)
查看代码参数
- innerBlock
- 类型:ICodeblock
Compiled codeblock created by the macro compiler. - cMacro
- 类型:String
Macro string that was used to create the codeblock. - lIsBlock
- 类型:Boolean
Did the macro string start with "{|". - lAddsMemvars
- 类型:Boolean
Does the macro create Memvars .
参见