getsentry / pdb

A parser for Microsoft PDB (Program Database) debugging information
https://docs.rs/pdb/
Apache License 2.0
384 stars 69 forks source link

Implement managed procedures and local var slots #146

Open michal-kapala opened 1 year ago

michal-kapala commented 1 year ago

Overview

I added support for the managed symbols missing from .NET PDBs:

I also added support for:

Now it's possible to view the names of properties, constructors, methods and local variables of C#-originating PDBs (could be helpful for Visual Basic, I haven't checked). I extended pdb_symbols example to include the managed symbols.

example