/// <summary> /// Recursively prints the contents of any POCO object to HTML /// </summary> public static string htmlDump(object target, HtmlDumpOptions options) => HtmlScripts.HtmlDump(target, options);
/// <summary> /// Recursively prints the contents of any POCO object to HTML with specified columns /// </summary> public static string htmlDump(object target, string[] headers) => HtmlScripts.HtmlDump(target, new HtmlDumpOptions { Headers = headers });
/// <summary> /// Recursively prints the contents of any POCO object to HTML /// </summary> public static string htmlDump(object target) => HtmlScripts.HtmlDump(target, null);