try this
using (var symbolStream = File.OpenRead(pdbPath))
{
var readerParameters = new ReaderParameters
{
ReadSymbols = true,
SymbolReaderProvider = new PdbReaderProvider(),
SymbolStream = symbolStream
};
myModuleDefinition =
ModuleDefinition.ReadModule(AssemblyFilePath, readerParameters);
}
--
--
--
mono-cecil
---
You received this message because you are subscribed to the Google Groups
"mono-cecil" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.