using System.Collections.Generic;
public static void Main()
Random rand = new Random();
List<Foo> fooList = new List<Foo>();
for(int i = 0; i < 50; i++)
var randInt = rand.Next(2);
AVC = randInt == 1 ? true : false
fooList = fooList.OrderBy(f => f.AVC).ToList();
foreach(var foo in fooList)
Console.WriteLine($"Foo nro {foo.Identifier} AVC on {foo.AVC}");