A simple library for generating permutations of an enumerable collection.
var result = Permutations.GetPermutations([1, 2]); // result: [1, 2], [2, 1]
All Unit Tests can be found under the Permutations.Tests namespace.
Available on: