S
sloan
string[] array = new string[3] {"A","B","C"};
Given the above data, I'm trying to find C# code which will produce
A,A
B,A
C,A
A,B
B,B
C,B
A,C
B,C
C,C
Its been a long week, and I'm brain dead, and googled out.
Thanks for any help.
Given the above data, I'm trying to find C# code which will produce
A,A
B,A
C,A
A,B
B,B
C,B
A,C
B,C
C,C
Its been a long week, and I'm brain dead, and googled out.
Thanks for any help.