Exemplo n.º 1
0
 public CExpression Cast(CType type, CExpression exp)
 {
     return(new CastExpression {
         Type = type, Expression = exp
     });
 }
Exemplo n.º 2
0
 public CExpression Sizeof(CType type)
 {
     return(new SizeofExpression {
         Type = type
     });
 }