in B4R we have "Log" working with a number of parameters not define
/**
*Logs one or more messages.
*This is a special method. It can accept any number of parameters.
*The data is sent through the Serial object.
*Each parameter can be a String, number or an array of bytes (which will be treated as a string).
*Example: <code>
*Log("x = ", x)</code>
*/
static void Log(Object* OneOrMoreMessages);
can we have in B4R similar process to manage a function in a class with multiple parameters ? (managed by va_list)
how a function with a not define list of parameters can be accepted at B4R user interface ?
/**
*Logs one or more messages.
*This is a special method. It can accept any number of parameters.
*The data is sent through the Serial object.
*Each parameter can be a String, number or an array of bytes (which will be treated as a string).
*Example: <code>
*Log("x = ", x)</code>
*/
static void Log(Object* OneOrMoreMessages);
can we have in B4R similar process to manage a function in a class with multiple parameters ? (managed by va_list)
how a function with a not define list of parameters can be accepted at B4R user interface ?