I have some TXT files which i load in DataTables ( in c# / .Net) So...my DataTable isn't binded to a "real" database like Oracle or SQL.
Now...i have to find some values in my dataTable. For the moment i simply use a for loop...The problem is i have large file and it's totally a waste of time.
I cannot use a Dictionnary because of duplicates keys..so, personnaly i want to continue to ue my DataTable.
If i'm not wrong, using LINQ is like using a for no ? It won't help me to gain time no?
So...i was thinking about binding a Dataview to my DataTable and creating my own index...What do you think ? Is it a good idea ?
Thanks a lot,