예제 #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;
 }