Good morning,
I am currently developing a ssis script task in c#. I am asking myself, it is possible to loop through all input variables. Currently I am accessing every single variable using "Row.VariableName". Since I have many variables this is sort of a pain. And it gets even worse when I change the input variables. So, is it possible to loop through all input variables which I have selected within the script task window without calling every single variable indepently?
A classical for-each loop-container is not suited within my case due to some specialities within my script task.
I am would appreciate any advice. :)