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

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

            Printer(Imports);
        }