How to delete a row from a datatable_ Consider I have 12 rows in my data table, I need to delete one of them using particular row value ..
datatable :
Field Name | Field Type
------------------------
FirstName | Text box
|
LastName | Text box
I need to delete the selected row form the table itself using below code snippet I can retrieve FirstName
string value = (string)selectedRows[i].Cells[0].Value;
Console.WriteLine(outdex);
But how delete it from the data table
Can any one help me out please?