I have few Excel files that contain three columns of data(numbers only) that I would like to store as C# objects. These objects will then be used to populate a Report chart in Visual Studio. Is there an easy way to convert this data to objects in C#? So, I would like to import this data into a list or collection in C#. Then use this list to create a chart.
I have looked around and there seem to be external libraries that read/write to Excel files but I am not in favor of external libraries. Also, I would like to point out that I am not using mysql. I am creating objects in memory and populating my report in Visual Studio with these objects.
Thank you!