Exemple #1
0
 private static IEnumerable <IHtmlTableCellElement> RowChildren(IHtmlTableRowElement re)
 {
     return(re.Children <IHtmlTableCellElement>()
            .Value.SelectMany(child => Linq.Range(child.ColumnSpan), (child, _) => child));
 }