my application read Excel sheets and display it as a table. What I do is reading DataTable and putting data in an object of type:
List<List<string>>
To display data on the page I use 2 loops (inner and outer) to recreate the table.
What I'd like to do is to create a new type MyType, for instance. Then add properties to it depending in number and value types to the headers of the Excel data. I believe it's easier to work with type.
Thanks for helping