Good morning.
After having read the answer on a question about optimizing Excel Interop, I found that referencing a cell using worksheet.Range["A1:C3"]
(same as worksheet.get_range("A1:C3")
) isn't very handy. I'd like to reference the cell somehow using integer/long numbers, and I wouldn't want to map column numbers {1, 2, 3, ...} to column letters {"A", "B", "C", ...}.
Note: I know about .Cells
, but this isn't an option as this only returns single cells AFAIK.
Any idea?
regards