Deletes a specified row and its contents from the worksheet. Rows below the deleted row will be moved up.

 public void DeleteRow(int rowNumber)
Public Sub DeleteRow(ByVal rowNumber As Integer)

The 0-based number of the row to remove.

ws.DeleteRow(70);
ws.DeleteRow(70)