LexiExtract is a .NET library that allows developers to retrieve millions of words for the requested language with just one line of code. All the data is stored in all-words-in-all-languages repository.
Via this library, you are going to be sending a GET request to the all-words-in-all-languages.
LexiExtract can be installed using the Nuget package manager or the dotnet
CLI.
dotnet add package LexiExtract
using LexiExtract;
string[] englishWords = new LexiExtract.Languages.English().GetAllWords();
string[] englishWordsAsync = await new LexiExtract.Languages.English().GetAllWordsAsync();
string randomWord = englishWords.GetRandomWord();
string[] randomWords = englishWords.GetRandomWords(10);
- Fork the repository.
- Make changes.
- Submit a pull request.