>Essentially what I am looking for is resources that
>explain, or show, how disassemblers like ildasm work.
The source code for ILDASM is available in Rotor.
http://www.msdn.com/net/sscli/
I believe Mono includes a disassembler as well.
http://mono-project.com
All you really have to do is to read and understand the file format
and metadata storage, which is specified in the CLI ECMA standard.
http://www.ecma-international.org/publications/standards/ecma-335.htm
Mattias

Signature
Mattias Sjögren [MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Shamrock - 20 Dec 2004 22:30 GMT
Thanks Mattias
"Mattias Sjögren" wrote:
> >Essentially what I am looking for is resources that
> >explain, or show, how disassemblers like ildasm work.
[quoted text clipped - 10 lines]
>
> Mattias