Reputation: 2417
I'm looking to invoke by reflection a method that returns List<X>
. However, I do not have the class definition for X, so I can only get the type by reflection. What's the proper syntax for declaring List<X>
, where X is a Class object?
Upvotes: 0
Views: 107