Пример #1
0
 public virtual TypedNew Update(TypedNew nex, string type, Expression[] args)
 {
     if (args != nex.Parameters || nex.Type != type)
     {
         return new TypedNew(type, args);
     }
     return nex;
 }
Пример #2
0
 public abstract void Visit(TypedNew expression);