Used in conjunction with GetChildren(), it will return a list of T from a list of children of a control.
Get Children is located at:
http://www.extensionmethod.net/Details.aspx?ID=309
Source
public static List<T> FindControlsByType<T>(this Control ctrl)
{
return ctrl.GetChildren().OfType<T>().ToList();
}