Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a static analysis tool for .NET assembly. In Java, there is a Descriptor which can be used to represent method or field in a string with specified grammar.

for field:

double d[][][];

will be

[[[D

It's useful especially when doing bytecode analysis. Coz it's easy to describe. If there a similar thing in .NET CLR? Or is there a better way to achieve this? Thanks!

share|improve this question

2 Answers

up vote 2 down vote accepted

I've done a lot of static analysis in .NET CIL last year and the best way to go is to use ildasm.exe or any disassembler that will give you some quite easy to parse IL language text file. You will find, there is no need to reverse-engineer anything and you will find that .NET is not that compiled.

Here is a good book recommendation if you are serious with IL Assembler: Expert .NET 2.0 IL Assembler

share|improve this answer

Hey, thanks Vincent. I'm now using a class to represent "return type+parameters list" info instead of a descriptor in string. Thanks for the book you recommended. Yes, I use ildasm.exe and to read the internal of an assembly. And in my project I use Cecil to digg everything out.

share|improve this answer
You can also try using this reflector: red-gate.com/products/reflector It is free I think, it used to be the best reflector until its author abandonned it recently. – Vincent Dec 23 '08 at 21:03
:) I use it. And I use Mono.Cecil in my code to read information from assemblies. – Sun Liwen Dec 25 '08 at 21:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.