Liberi
An exergame built for kids with CP!
ListUtils.cs
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
4 
8 public static class ListUtils
9 {
13  public static void Shuffle (this IList list)
14  {
15  Random rng = new Random();
16 
17  int n = list.Count;
18 
19  while (n > 1)
20  {
21  n--;
22  int k = rng.Next(n + 1);
23  var value = list[k];
24  list[k] = list[n];
25  list[n] = value;
26  }
27  }
28 
32  public static T PopFirst<T>(this List<T> list)
33  {
34  T poppedValue = list[0];
35  list.RemoveAt(0);
36  return poppedValue;
37  }
38 
42  public static T PopLast<T> (this List<T> list)
43  {
44  T poppedValue = list[list.Count - 1];
45  list.RemoveAt(list.Count - 1);
46  return poppedValue;
47  }
48 
52  public static T PopNth<T> (this List<T> list, int n)
53  {
54  T poppedValue = list[n];
55  list.RemoveAt(n);
56  return poppedValue;
57  }
58 
62  public static T GetRandom<T> (this List<T> list)
63  {
64  Random rng = new Random();
65  return list[rng.Next() % list.Count];
66  }
67 }