public static class Program
public static void Main(string[] args)
var empCollection = new[]
Notes = new[] {"A", "B", "C", "D"}
Notes = new[] {"E", "F", "G", "H"}
.SelectMany(e => e.Notes, (e, n) => new {name = e.Name, note = n});
foreach (var item in data)
Console.WriteLine($"Name {item.name}, Note {item.note}");
public string Name { get; set; }
public string Salry { get; set; }
public string[] Notes { get; set; }