Hi, On 9/30/09, [email protected] <[email protected]> wrote: > I'm writing some code Analysis tool and I'm trying to switch to cecil > after using reflection. > My problem is that i need to know if a member is explicitly > implemented from an interface and if so what is that interface. I > noticed that I can do this by parsing but it feels wrong, is there a > better way to do so ?
Methods that are explicitly implemented from an interface have the method they implement in their .Overrides collection. If the method is implicitly implemented, you don't have much choice than descending the type hierarchy to find it yourself. -- Jb Evain <[email protected]> --~--~---------~--~----~------------~-------~--~----~ -- mono-cecil -~----------~----~----~----~------~----~------~--~---
