예제 #1
0
 public CodeCastExpression(CodeTypeReference type, CodeExpression exp)
 {
     this.TargetType = type;
     this.Expression = exp;
 }
예제 #2
0
 public CodeVariableDeclarationStatement(CodeTypeReference type, string name)
 {
     this.Type = type;
     this.Name = name;
 }