I have a c# application which reads data from an excel file.
i used
Range xlRng = (Range)workSheet.get_Range("A1:B6", Missing.Value);
this to read value from A1 to B6 cells
if i gave a range i need to read value to a dictionary and the key name must be cell index and the value must be corresponding cell value
Key Value
A1 Value1
B1 Value2
A2 Value3
B2 Value4