Be able to check if a type is implementing a generic type with certain generic parameters

-
Pablo commented
I would also find this pretty useful
-
No not yet sorry
-
Tim commented
Any update on this?
-
Yuan Jian commented
I also wanted this feature. Is it available in the latest version 6.3? Thanks.
-
Roly Vicaria commented
My use case would be that I wanted to see which of my classes are used as type parameters to third party generic methods. In particular, my project uses AutoMapper which has a generic method for CreateMap<T1, T2>() and I would want to query which of my classes are used as parameters there.
-
Being able to search for a concrete usage of a generic type
Basically you have a gneric method (or type) like DoIt<T>(T). currently it is possible to search for the usage of this method.
it would be really usefull to also be able to search for DoIt<String>(String), a concrete instantiation of the generic method.This information is currently available in the IL code.