using System.Collections.Generic;
using System.Threading.Tasks;
public class FootballPlayer
public FootballPlayer(string firstname, int age)
public List<FootballPlayer> playersList = new List<FootballPlayer>();
public void AddPlayer(string firstname, int age)
FootballPlayer player = new FootballPlayer(firstname, age);
Random rnd = new Random();