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