Example #1
0
        public static void DumpImports(PE Pe, Action <IPrettyPrintable> Printer, int recursion_depth = 0)
        {
            PEImports Imports = new PEImports(Pe);

            Printer(Imports);
        }
Example #2
0
        public static void DumpImports(PE Pe, Action <IPrettyPrintable> Printer)
        {
            PEImports Imports = new PEImports(Pe);

            Printer(Imports);
        }