                                dotnet dumper
                                                (c) 2011 deroko of ARTeam
                                                
        This tool will try to list, and dump all important fields of .NET binary.
It was written in such way, that with minor changes it can be used also on any
other platform (linux/freebsd).

For processing .NET very important is to know simple vs coded index, and how to
organize them. I've used strings to build internal structures, instead of flags
as I wanted it to serve me also as a reference for ECMA-335 specification, and 
especially for Partition II from ECMA-335.

All data presented here is extracted from above mentioned specification. You can
do it easy way, and consult great article written by Daniel Pistelli "The .NET File
Format" available at http://www.ntcore.com/files/dotnetformat.htm , or you can do
it hard way through specification. It's up to you.

Also one more hint, as there are some tables which can be present in .NET binary, 
but not in ECMA-335, you may use ildasm to get description of unknown tables, and
add support for them also.

                                                        deroko of ARTeam 
