MSDN-WhiteKnight / CilTools

A set of tools to work with CIL in .NET applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Type disassembler improvements

MSDN-WhiteKnight opened this issue · comments

  • Support field custom attributes
  • Expose constant values as LiteralSyntax instead of GenericSyntax
  • Support events
  • Remove SyntaxNode.GetPropertyMethod helper as CiLTools.Metadata now implements GetGetMethod/GetSetMethod
  • Support custom (.other) accessors in properties and events
  • Verify RVA fields behaviour (dotnet/runtime#70876)
  • Only query declared members when disassembling type. Implement querying declaring/inherited members in CilTools.Metadata.
  • Support field offsets for explicit struct layout (fixed on GitFlic)