Is it possible to generate all permutations of a collection in c#?
char[] inputSet = { \'A\',\'B\',\'C\' }; Permutations permutations = new Permu
There's nothing built in.
I've found a a couple of Code Project articles here and here which might help you implement your own class.