Ejemplo n.º 1
0
 public override void Apply(CstFuncArg cstFuncArg)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 public abstract void Apply(CstFuncArg cstFuncArg);
 public BuiltInFunctionArgumentTypeException(string funcName, CstFuncArg arg, string expectedType)
 {
     Message = $"Func[{funcName}]: arg: {arg.Type} must be {expectedType}";
 }