It would be very cool to add a online MSIL code disassembler to your site.

for example:
I have this MSIL Class Constructor data:
0, 2, 3, 40, 64, 0, 0, 6, 0, 0, 42
and it should be equal to this other :
0, 2, 3, 40, 46, 0, 0, 6, 0, 0, 42
but is not equal, and I searched an online disassembler, to understand his meaning, but found no one.

I think that it would be easy to implement.
marraco
0

Comments

2 comments

  • haleyjason
    If you are still trying to decipher what the constructor data is or why it is different, I'd suggest ILDasm or the Ecma 335 standard. The constructor data for a normal class constructor will be a Method Signature but the data for a Custom Attribute will be a different thing (has its own encoding scheme).

    Not sure if it will help you any, but I have some examples of decoding method signatures on my site (http://jasonhaley.com/Reversing/default.aspx). Custom attributes are next on my list to do.

    My goal is to create a Reflector addin that will show everything that ILDasm does ... but spare time has been at a minumum lately.
    haleyjason
    0
  • marraco
    haleyjason wrote:
    If you are still trying to decipher what the constructor data is or why it is different, I'd suggest ILDasm or the Ecma 335 standard. The constructor data for a normal class constructor will be a Method Signature but the data for a Custom Attribute will be a different thing (has its own encoding scheme).

    Not sure if it will help you any, but I have some examples of decoding method signatures on my site (http://jasonhaley.com/Reversing/default.aspx). Custom attributes are next on my list to do.

    My goal is to create a Reflector addin that will show everything that ILDasm does ... but spare time has been at a minumum lately.
    Thanks for the info. I are checking it :)
    marraco
    0

Add comment

Please sign in to leave a comment.