.NET 6 foreach somente se não for nulo
List<string> items = null;
items?.ForEach(item =>
{
// ...
});
Combative Cicada
List<string> items = null;
items?.ForEach(item =>
{
// ...
});