I am new on devexpress,so I have a simple question here.what is the equal of the this code on devexpres gridview.
for(int i=0;i<dtable.rows.count;i++)
{
myGridview.Rows.Add();
myGridview.Rows[i].Cells[0].value =dtable.Rows[i][0].tostring();
myGridview.Rows[i].Cells[1].value = dtable.Rows[i][1].tostring();
}