Use LINQ and Visual Basic 2008 to Get a List of Buttons from a Windows Forms Form

Summary:
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 th...
Bookmark |  Comment |  Forward  |   | 
Comments:
- Comments