views:

75

answers:

1

I need to add dictionary facilities to an Asp.net MVC app. Does anyone know a library that I could use? Where can I get word definitions from?

Any help is appreciated.

+2  A: 

it depends on what you want to do. if your trying to add a reference of an actual dictionary of words to use for your application then you'll have to create your own to define the words that you want to use. if your trying to find the library that contains the data type dictionary then you should try System.Collections.Generic, or System.Collections.Specialized

Sotelo