1
Answer

adding .accdb database into hashtable

farshad  zamani

farshad zamani

13y
1.9k
1
I am building a dictionary from English to Malay language. I have added my database which is under .accdb extenstion to Server Explorer in C# and now I want to add all the words from my database into hashtable. Do you have any suggestion how can I put the database in hashtable?
Answers (1)
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 13y
Welcome to C# Corner.

There are other algorithms for organizing data for searching, which is also called a lookup. C# has a few implementations that are useful, such as binary trees. You probably can use a collection without doing any of the details such as hashes. There are many articles in this web site that can help. The main ones are Dictionary,  SortedDictionary and SortedList.

There are many useful articles in this web site that can help, so have a look at the articles. At the right side of this page is "Our recommended articles"; hopefully there are articles there to help you but there are many others to look at too.