コード例 #1
0
ファイル: Declaration.cs プロジェクト: n9546839/TJ42
 public FormalParameter(Type TypeOfFP, VariableDeclaratorId NameOfFP)
 {
     this.NameOfFP = NameOfFP; this.TypeOfFP = TypeOfFP;
 }
コード例 #2
0
ファイル: Declaration.cs プロジェクト: n9546839/TJ42
 public LocalVariableDeclaration(Type TypeOfLVD, VariableDeclaratorId NameOfLVD)
 {
     this.TypeOfLVD = TypeOfLVD; this.NameOfLVD = NameOfLVD;
 }