Czytanie komórki excela

string path = @”C:\plik.xlsx”;

Application excel = new Application();
Workbook wb = excel.Workbooks.Open(path);
Worksheet excelSheet = wb.ActiveSheet;

//Read the first cell
string test = excelSheet.Cells[3, 2].Value.ToString();

wb.Close();

Console.WriteLine(test);

Console.ReadKey();