using System.Collections.Generic;
public static void Main()
var goals = new List<Goal>();
goals.Add(new Goal(){ID=1, Level=1, Active = true});
goals.Add(new Goal(){ID=2, Level=1, Active = false});
goals.Add(new Goal(){ID=3, Level=2, Active = true});
goals.Add(new Goal(){ID=4, Level=2, Active = true});
goals.Add(new Goal(){ID=5, Level=2, Active = false});
goals.Add(new Goal(){ID=6, Level=2, Active = false});
goals.Add(new Goal(){ID=7, Level=2, Active = false});
goals.Add(new Goal(){ID=8, Level=2, Active = false});
goals.Add(new Goal(){ID=9, Level=2, Active = false});
goals.Add(new Goal(){ID=10, Level=2, Active = true});
goals.Add(new Goal(){ID=11, Level=2, Active = true});
goals.Add(new Goal(){ID=12, Level=2, Active = true});
goals.Add(new Goal(){ID=13, Level=2, Active = true});
goals.Add(new Goal(){ID=14, Level=2, Active = true});
goals.Add(new Goal(){ID=15, Level=2, Active = true});
goals.Add(new Goal(){ID=16, Level=2, Active = true});
Random rnd = new Random();
Comparison<Goal> comparison = (a, b) => {
var sort = b.Active.CompareTo(a.Active);
return sort = (a.Level).CompareTo(b.Level);
while (startIndex < goals.Count)
for (endIndex = startIndex + 1; endIndex < goals.Count; ++endIndex)
if (comparison(goals[startIndex], goals[endIndex]) != 0)
if (endIndex - startIndex > 1)
ShuffleRange(goals, startIndex, endIndex - startIndex, rnd);
Console.WriteLine("ID={0:00}, Level={1}, Active={2}", g.ID, g.Level, g.Active);
static void ShuffleRange<T>(List<T> list, int startIndex, int count, Random rnd)
int n = startIndex + count;
while (n > startIndex + 1)
int k = rnd.Next(startIndex, n--);