Ejemplo n.º 1
0
        public static void DumpExports(PE Pe, Action <IPrettyPrintable> Printer, int recursion_depth = 0)
        {
            PEExports Exports = new PEExports(Pe);

            Printer(Exports);
        }
Ejemplo n.º 2
0
        public static void DumpExports(PE Pe, Action <IPrettyPrintable> Printer)
        {
            PEExports Exports = new PEExports(Pe);

            Printer(Exports);
        }