Let's say I want to find the value of a cell in an Excel file. In VBA, I would do this:
Dim varValue As Variant
Dim wb As Workbook
Dim ws As Worksheet
Set wb = ThisWorkbook
Set ws = wb.Worksheets("Sheet1")
varValue = ws.Range("A1").Value
How do I set up a Visual Studio project so I can access and modify an Excel file in C# rather than in VBA?
What references might I need to add?
Does the file need to be open in order to work with it?