Esempio n. 1
0
 // Returns a random collection of items from the unclaimed list without removing them.
 // The index of each item returned will be different.
 public List <T> GetRandomElementsUniqueUnclaimed(int count)
 {
     return(UtilRandom.GetRandomElementsUnique(unclaimed, count));
 }