How do i convert this code to lambda expression?
For Each li As ListBox In initLsts
li.Items.Clear()
Next
Dim initLsts As List(Of ListBox)
initLsts.Add(listbox1)
initLsts.Add(ListBox2)
For Each li As ListBox In initLsts
li.Items.Clear()
Next