using static System.Console;
using System.Collections.Generic;
public static void Main() {
var lstPessoas = new List<Pessoas>();
var pessoa = new Pessoas {
lstPessoas.ForEach(item => item.Nome = item.Id + " - " + item.Nome);
foreach (var item in lstPessoas) {
public int Id { get; set; }
public string Nome { get; set; }