I am working on an application which will compare two datasets. This will take two .csv files and compare the data between them. I have to read the .csv files and compare the file field to field. Now I don't want to waste time by comparing columns that are already matching when summed. currently, I am storing the list as DataTable. How can I find the field datatype if it is an integer or date or decimal or string?
Is there an easy way to do or a library available?
Please help.