Esempio n. 1
0
 /// <inheritdoc/>
 protected override bool HandleDynamic(CodeLambdaParameterDeclarationExpression obj, Context ctx)
 {
     if (obj.Type != null)
     {
         ctx.HandlerProvider.TypeReferenceHandler.Handle(obj.Type, ctx);
         ctx.Writer.Write(" ");
     }
     ctx.Writer.Write(obj.Name.AsCsId());
     return(true);
 }
 /// <inheritdoc cref="ICodeObjectHandler{T}.Handle"/>
 protected abstract bool HandleDynamic(CodeLambdaParameterDeclarationExpression obj, Context ctx);