* @return a new IList with the permuted elements. */privatestaticIListpermuteList(IList arr, SecureRandom rand){// TODO Create a utility method for generating permutation of first 'n' integersIList retval = Platform.CreateArrayList(arr.Count);foreach(objectelementinarr) {intindex = rand.Next(r...