using System.Collections.Generic;
public static void Main()
var b = new List<List<string>?>() {
new (){ "Mr Siang Lee Khaw", null },
new (){ "Dis Mount", null, null },
new (){ "02100", "Munith" },
Console.WriteLine(string.Join(", ",
.Select(a => string.Join(" ", a.Where(i => !string.IsNullOrWhiteSpace(i))))));