using System;
public class Program
{
public static void Main()
Console.WriteLine("Coding Exercises");
//1. Create initialData with 10 records using loop inside createInitialData method
//2. Get the older person
//3. Get the customer from 3 to 4 index from highest to lowest age order.
//4. Remove record from index 5.
//5. Implement 2 Types of Polymorphism using Person class implementing [work] method.
}
public void createInitialData() {}
public interface Person {
string Name { get; set; }
int Age { get; set; }