Generate PDB from .NET DLL file?
问题 I need something that can generate a PDB from a DLL file (C# .NET code), is there any free program to do that? 回答1: You need the source code in order to generate a PDB. 回答2: 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 回答3: Actually you can do it also with dotPeek from 1.2 version onward. Right click the