3
votes
What is your best resource about generics and their interfaces?
The main way I came to understand them was just by looking at their interfaces.
The inheritance goes like this:
IList : ICollection : IEnumerable
When you look up IEnumerabl …
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 …
