Example #1
0
 protected override void Execute(CodeActivityContext context)
 {
     try
     {
         SymbolicExpression input = this.Input.Get(context);
         this.Output.Set(context, input.AsVector());
     }
     catch (Exception e)
     {
         throw e;
     }
 }