5
Reply

filter data from linq

Ekrem Tapan

Ekrem Tapan

Nov 12 2015 1:26 AM
302
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)