示例#1
0
        public static void DumpExports(PE Pe, Action <IPrettyPrintable> Printer, int recursion_depth = 0)
        {
            PEExports Exports = new PEExports(Pe);

            Printer(Exports);
        }
示例#2
0
        public static void DumpExports(PE Pe, Action <IPrettyPrintable> Printer)
        {
            PEExports Exports = new PEExports(Pe);

            Printer(Exports);
        }