On Wed, Mar 30, 2011 at 9:47 AM, Mort <[email protected]> wrote:
> ldloca 0
> stloc 1  (Created a new local var which is the same type of
> 'ThisParameter' from MyStruct::Foo() )
> ldloca 1 (neither ldloca and ldloc work here)
> call MyObj::Foo()

use:

ldloc 0
stloc 1
ldloca 1
call MyStruct::Foo()

Jb

-- 
--
mono-cecil

Reply via email to