Hi, On Mon, Dec 13, 2010 at 11:48 PM, Greg Young <[email protected]> wrote: > Is there no way to walk back to the MethodDefinition the returntype belongs > to? > I can get the signature but not walk back up that I can see.
If you have: MethodDefinition method = ...; MethodReturnType returnType = method.MethodReturnType; Then returnType.Method == method; -- -- mono-cecil
