using System.Collections.Generic;
public static void Main()
(string nom, string prénom) [] gens = new[]
("Nguyen", "Bill"), ("roy", "Patrice"), ("Roberge", "William"),
("Rousseau", "Nathan"), ("gendron", "Étienne"),
("barakatt", "maxime"), ("Charland", "Alexandre")
foreach(var (nom, prénom) in gens.Where(p => p.nom.Length > 0 && char.IsUpper(p.nom[0]))
Console.WriteLine($"{nom} {prénom}");