Пример #1
0
 private MethodBodyBlock(VariablesList variables, Type returnType)
 {
     this.variables = variables;
     this.returnType = returnType;
 }
Пример #2
0
 public MethodBodyBlock(Type returnType)
 {
     variables = new VariablesList();
     this.returnType = returnType;
 }