static void Main(string[] args) { StudentClass sc = new StudentClass(); sc.QueryHighScores(1, 90); sc.GroupByRange(); sc.GroupByBoolean(); sc.ExampleAllAny(); sc.ReflectionExample(); sc.SetOperationsExamples(); // Keep the console window open in debug mode. Console.WriteLine("Press any key to exit"); Console.ReadKey(); }