.NET 6 Foreach tylko, jeśli nie null

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