Assume that you have an idCollection IList<long>
and you have a method to get 4 unique ids.Every time you call it, it gives you random 4 unique ids ?
var idCollec = new[] {1,2,3,4,5,6,7,8,9,10,11,12}.ToList();
For example {2,6,11,12}
{3,4,7,8}
{5,8,10,12}
...
..
What is the smartest way to do it ?
Thanks