Is there a description of the IL disassembler icons available somewhere

前端 未结 1 2031
走了就别回头了
走了就别回头了 2021-02-06 03:44

I\'m playing around with the MS IL disassembler, which lets you view the contents of a .Net assembly. The classes and Interfaces are shown in a tree view, nicely encoded with co

相关标签:
1条回答
  • 2021-02-06 04:15

    Clicking "Help" under "Help" and "Tree View Icons" shows what the icons mean, however it appears to be missing a few. Below is an exhaustive list.

    • Metadata - Metadata, such as the assembly manifest, type declaration modifiers, etc.
    • Namespace - A Namespace.
    • Instance Field - An instance field, assembly, or netmodule.
    • Static Field - A static field.
    • Class, Delegate, Module - A class, delegate, or module (VB.NET).
    • Generic Class or Delegate - A class or delegate with type arguments (generics).
    • Struct - A struct.
    • Generic Struct - A struct with type arguments (generics).
    • Interface - An interface.
    • Generic Interface - An interface with type arguments (generics).
    • Enumeration - An enumeration.
    • Instance Method - An instance method or constructor.
    • Generic Instance Method - An instance method with type arguments (generics).
    • Static Method - A static method or type initializer (static constructor).
    • Generic Static Method - A static method with type arguments (generics).
    • Property - A property, instance or static.
    • Event - An event, instance or static.
    0 讨论(0)
提交回复
热议问题