5
Answers

filter data from linq

Photo of Ekrem Tapan

Ekrem Tapan

9y
653
1
hi everyone, i want to ask, if  infos variable inside have a many data, how can i get just 5-6 data ? 
 
foreach (var info in infos)
{
   htmlTh = new TableHeaderCell();
   htmlTh.Text = info.Name;
   htmlTr.Cells.Add(htmlTh);
}

Answers (5)