Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Traverse a c# method and anazlye the method body

Tags:

c#

il

methodinfo

Whats the easiest way to traverse a methodinfo in c#?

I want to traverse the method body and find field-references and such and retrieves the types.

In System.Reflection there is:

mi.GetMethodBody().GetILAsByteArray()

which is kinda low-level and would require "some" work before I would be able to traverse the body.

I know Cecil exists, but there's a problem in loading an in memory assembly with cecil. The assembly i'm working with is't always "on disk" it can be an in memory assembly compiled from eg. Boo, and I wan't a clean solution without writing the assembly temporary to disk.

What other alternatives is there out there for this?

like image 623
Marcus Avatar asked Aug 05 '10 10:08

Marcus


1 Answers

This thing should help: Reflection based CIL reader. It operates on byte array obtained by calling GetILAsByteArray()

like image 63
desco Avatar answered Nov 08 '22 17:11

desco