Example:
' Create a LINQ query.
Dim buttonQuery = From control In Me.Controls Where TypeOf (control) Is Button
' Create a list of object.
Dim buttonList = buttonQuery.ToList
' Iterate through the objects in buttonList.
For Each btn As Button In buttonList
' Show each button's text property.
MessageBox.Show(btn.Text)
Next