I have a csv file with million records which consists of an ID column,date column etc.. I have u read each record from input file say file1 n put in a List,while inserting i need to check if that particular ID exists already in the List if yes then replace the date with new date from file1.
This can be done through binary search (List.BinarySearch)(C#).but since the file size is large i think it will be tedious process.What is the alternative.How can i do this in efficient way
Thanks