Hi all,
In Cecil 0.6 (old version) multi-module assemblies were supported
through:

    AssemblyDefinition assembly = AssemblyFactory.GetAssembly(file);
    foreach (ModuleDefinition module in assembly.Modules) {
        ...
    }

But in Cecil 0.9 (the new one) the only API to access assembly is:

    ModuleDefinition module = ModuleDefinition.ReadModule(file);

What happens with multi-module assemblies and should we care at all?
Thanks, Kosta.

-- 
--
mono-cecil

Reply via email to