Hi, I'm looking for a way to call a number of functions/methods in foreach, like smthg below, please help !!!
Code:
string[] sScripts =
{
"MyAppsScript()",
"ProfilesScript()"
};
foreach (var sScript in sScripts)
{
//execute scripts here
}
Comment