2
votes
Using Reflection to set a Property with a type of List<CustomClass>
Here's an example of taking the List<> type and turning it into List<string>.
var list = typeof(List<>).MakeGenericType(typeof(string));
…
1
vote
Get a generic method without using GetMethods
Solved (by hacking LINQ)!
I saw your question while researching the same problem. After finding no good solution, I had the idea to look at the LINQ expression tree. Here's what I came up w …
2
votes
How do you get the name of a generic class using reflection?
The '1 is part of the name, because, for example,
List<T> and List (if I created such a class) are different classes.
'1 means that it has one type parameter …
