.net 6 foreach solo si no es nulo

List<string> items = null;
items?.ForEach(item =>
{
    // ...
});
Combative Cicada