Hi, say i have the following array:
string[] = new string[] { "A", "B", "C" };
How can i produce all the possible permutations which contains only 2 characters and no two the same (eg AB would be the same as BA). Therefore using the above array it would produce:
AB
AC
BC
Please note that this example has been simplified therefore the array and the length of the string required will be greater.
I'd really appreciate if someone could help.