I am trying to make a selection for a set of values, each of the methods return a string array which I am trying to put into a string array in the main. Here is the code:
string[] array = { MethodA1(), MethodA2(), MethodA3() };
I am trying to make the string[] array, just one item. This works: (but it only allows the user to show/select one value)
string[] array = MethodA1();
Can anyone think of a way to allow multiple method returns into an array?