コード例 #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;
 }