示例#1
0
文件: Graph.cs 项目: DragonXYZ/cilpe
 private MethodBodyBlock(VariablesList variables, Type returnType)
 {
     this.variables = variables;
     this.returnType = returnType;
 }
示例#2
0
文件: Graph.cs 项目: DragonXYZ/cilpe
 public MethodBodyBlock(Type returnType)
 {
     variables = new VariablesList();
     this.returnType = returnType;
 }