I have a requirement of passing data in arguments.
Which can be
1) A Single String -> 'StringData'
2) Multiple Strings -> 'StringData0', 'StringData1', 'StringData2'
3) Single Numeric data -> 10 OR 30.22
4) Multiple Numeric data -> 10, 20, 30 OR 30.22, 12.01, 1.4
5) Mix of String, bool, int, double -> 'StringData', true, 10, 45.33, false
Is there any way that I can create a Variable that can accept any of the above possibility
ui.InvokeFunction(parameter1, parameter2, ArgumentList)
I want to fill the data in ArgumentList variable which can be any of the above 5 possibility. I did not find any way to insert multiple data types in ArgumentList