I have an array with letters for example
string[] arrayLetters = new string[] {"A","B", "C", "D"}
and so on.
Now a user will type in the number of sets he want to display...
if for example he types in 2, then the output would be:
AB,AC,AD, BC, BD
For a set of three, the output would be like:
ABC, ABD, ACD, BCD
... and so on.
Can you please help me solve this little scenario I have?
Thanks Mark Montebello the Cicco
homeworktag.