Re: [mono-cecil] call instruction: get information about static, instance, etc...

2016-09-26 Thread Pietro Ferrara
Hi Jb, thank you very much! And I was right: I was missing something very easy :) On Thursday, September 22, 2016 at 7:07:00 PM UTC+2, Jb Evain wrote: > > Hi Pietro, > > The call instruction will have a MethodReference operand. The > MethodReference will have a .HasThis property, telling you

Re: [mono-cecil] call instruction: get information about static, instance, etc...

2016-09-22 Thread Jb Evain
Hi Pietro, The call instruction will have a MethodReference operand. The MethodReference will have a .HasThis property, telling you if it's an instance method (which has a this argument) or a static method. Jb On Thu, Sep 22, 2016 at 8:40 AM, Pietro Ferrara wrote: > Hi all, > I'm pretty sure I