I have a datagridview that I am trying remove a row. The grid is bound to a datatable and I'm deleting the row from the datatable...problem is I'm not sure how to reference the row in the grid. Here's my statement:

dtTable.Rows.Remove(grd.CurrentRow.?)

The ? is...what's next?

Thanks,