What is the difference between these two different ways to read a string from an Excel speadsheet while working with the Excel Interop in C#?
String node1 = ((Excel.Range)ws.Cells[row, "A"]).Value2.ToString();
String node1 = ws.Cells[row, "A"].ToString();
Is one better, more correct/through than the other?
It looks as though it has to do with Date and Currency data types.