Using the GetMembers()
method of INamedTypeSymbol
seems to return only types explicitly declared in that class. How can I get a list of all the methods, including the inherited ones?
If this requires walking the chain of base classes, calling GetMembers()
on each one, how can I determine which method is the "most derived" one, so to speak?