Generate PDB from .NET DLL file?

后端 未结 5 1252
隐瞒了意图╮
隐瞒了意图╮ 2021-01-31 04:07

I need something that can generate a PDB from a DLL file (C# .NET code), is there any free program to do that?

5条回答
  •  佛祖请我去吃肉
    2021-01-31 04:30

    Even you have no sources and code obfuscated, you can create pdb by recompile with ildasm and ilasm:

    • decompile assembly by ildasm: ildasm /out=assembly_name.il assembly_name.dll
    • complile with ilasm: ilasm assembly_name.il /dll /pdb

提交回复
热议问题