I have a private readonly list of LinkLabels (IList). I later add LinkLabels to this list and add those
private readonly
LinkLabel
IList
The issue's root cause is correctly described in other answers, but to resolve the warning, you can always write:
_list.ForEach(lnkLbl => flPanel.Controls.Add(lnkLbl));