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