public static HtmlTableRow NewRow(this HtmlTableSection section) { var newRow = new HtmlTableRow(section.Columns); section.Add(newRow); return(newRow); }
public static void Add(this HtmlTableSection table, params object[] values) => table.Add((IEnumerable <object>)values);