.net 6 foreach только если не нулевой

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