List, Dictionary, HashSet
using System.Collections.Generic;
var nomes = new List<string> { "Ana", "Bruno" };
nomes.Add("Carla");
nomes.Remove("Ana");
Console.WriteLine(nomes.Count);
var idades = new Dictionary<string, int> {
["Ana"] = 25,
["Bruno"] = 30
};
Console.WriteLine(idades["Ana"]);
var unicos = new HashSet<int> { 1, 2, 3, 1 };