Difficult to give correct title, sorry for this.
I have a class (I cannot modify) with a function
f(string arg1, string arg2, ..., string n)
.
I have an array var arr = new string[n] { ..... }
How can I convert array items to be passed fo function f
without the need to write
f(arr[0], arr[1], ..., arr[n-1])
?