Como obter intervalo específico no Excel através da interoperabilidade COM?

Eu tenho o seguinte problema. Eu tenho que ler um arquivo do Excel através da interoperabilidade COM. Eu sou novo em programação com interoperabilidade COM.

Eu procuro por uma string específica usando este:

this.sheet = (Excel.Worksheet)this.excelApp.Workbook.Sheets.Item[this.sheetname];
            this.sheet.Activate();
            Excel.Range firstRow = this.sheet.Range["A1", "XFD1"];
            Excel.Range foundRange = firstRow.Find(
                this.StringISearch,
                Type.Missing,
                Type.Missing,
                Excel.XlLookAt.xlWhole,
                Excel.XlSearchOrder.xlByColumns,
                Excel.XlSearchDirection.xlNext,
                false,
                false,
                Type.Missing);

Não, eu quero usar o foundRange como ponto de partida para obter outro intervalo.

Algo assim

Excel.Range MyRange = this.sheet.Range[foundRange + 2 rows, + 1 column & lastRow];

Não vejo uma maneira de fazer isso. Existe um?

questionAnswers(1)

yourAnswerToTheQuestion