Search from a large quantity
If it is to search from a small quantity (say 10) we can use array in C# language. If it is to search from a large quantity (say 1000) what is the way, is there any data base which can link to C# language.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Aug 13, 2012, 9:45 AM
Alternatively, you can use XML or CSV files to store your data.
However, 1000 records isn't a particularly large quantity nowadays and there's no reason why you shouldn't be able to manipulate them in memory using an array or generic List.
Posted Aug 13, 2012, 9:54 AM