Let's say I have a method that takes an x amount of parameters. The parameters are passed to me by the user in the form of a list. How can I pass that list as parameters inline of the function call? For example if I had a fixed amount of params I could do the following:
myfunction(param[1], param[2], param[3])
Obviously this will not work with an arbitrary amount of parameters. I have tried numerous variations of 'every' with the most ambitious being:
myfunction(every !param)
but it does not seem to work. Can anybody help?
The syntax for what I believe you are trying to accomplish is
myfunction ! param -- Nevin ":-)" Liber <mailto:[EMAIL PROTECTED]> (773) 961-1620
------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 _______________________________________________ Unicon-group mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/unicon-group
