Is there an easy way to decode PEVerify errors and warnings?

Errors and warnings provided by PEVerify , such as the one below, how can I trace back class and interface names? Suppose I am not a compiler author or an IL master.

[MD]: Error: Class implements interface but not method (class:0x02000091; interface:0x06000169;method:0x00000000). [token:0x09000043] [MD]: Warning: MemberRef has a duplicate, token=0x0a0001ff. [token:0x0A000060] 
+8
peverify
source share
1 answer

Use ILDASM and load the assembled assembly. Go to View-> MetaInfo-> Show! This opens a text viewer showing a human-readable version of the assembly metadata. Search for hex identifiers (but skip the "0x" section) to find the appropriate class, interface, and methods.

+11
source share

All Articles