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

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

            Printer(Imports);
        }