Possible Duplicate:
Is using Random and OrderBy a good shuffle algorithm?
Given an integer array of n consecutive number from 0, i.e.
0,1,2,..n
I wish to randomly generate a permutation of number,
say given
0,1,2,3
a possible one is 3,1,2,0
How to achieve it easily?