I want to declare a list containing types basically:
List<Type> types = new List<Type>() {Button, TextBox };
is this possible?
|
|
Try this:
The For object instances you can call the |
|||||||||||||||
|
|
You almost have it with your code. Use typeof and not just the name of the type.
|
|||
|
|
|
Yes, use
To add items to the list, use the typeof keyword.
|
|||
|
|
You need to use the typeof keyword. |
|||
|
|