How to extract the second row or 3rd row cell in table

Hi Team,
How to extract the second row or 3rd row cell in table.

@Manasahr You can access rows in that by index, the same you can access cells by index in the row. For example:

Document doc = new Document(@"C:\Temp\in.docx");

// Ge some table.
Table table = doc.FirstSection.Body.Tables[0];

// Get the second row by index (indices are zero based)
Row secondRow = table.Rows[1];

// Get the third cell from the row.
Cell thirdCellInSecondRow = secondRow.Cells[2];