Declaring a List of types

Viewed 48278

I want to declare a list containing types basically:

List<Type> types = new List<Type>() {Button, TextBox };

is this possible?

5 Answers
Related