How do I create a `ITypeElement` with represents a closed generic type in a ReSharper plugin?
问题 I'm using the ReSharper 8 sdk and want to find all inheritors of a particular generic interface, where the generic type is a particular type. I have asked a more general question which got most of the way there, but I am only able to find any implementation of ICommandHandler<T> and not the one implementation I want, ICommandHandler<TestCommand> this is the code I have: foreach (var psiModule in declaredElement.GetPsiServices().Modules.GetModules()) { IDeclaredType genericType = TypeFactory