CrypticWizard.RandomWordGenerator
0.9.4
Prefix Reserved
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package CrypticWizard.RandomWordGenerator --version 0.9.4
NuGet\Install-Package CrypticWizard.RandomWordGenerator -Version 0.9.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CrypticWizard.RandomWordGenerator" Version="0.9.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CrypticWizard.RandomWordGenerator --version 0.9.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CrypticWizard.RandomWordGenerator, 0.9.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CrypticWizard.RandomWordGenerator as a Cake Addin #addin nuget:?package=CrypticWizard.RandomWordGenerator&version=0.9.4 // Install CrypticWizard.RandomWordGenerator as a Cake Tool #tool nuget:?package=CrypticWizard.RandomWordGenerator&version=0.9.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
random-word-generator
Description
- A random word generator for .NET and .NET Core
- Useful for:
- Username generation
- Random word stories
Tests
Usage
Install Package:
dotnet add package CrypticWizard.RandomWordGenerator
<PackageReference Include="CrypticWizard.RandomWordGenerator" Version="0.9.3"/>
Include Package:
using CrypticWizard.RandomWordGenerator;
using static CrypticWizard.RandomWordGenerator.WordGenerator; //for brevity, not required
GetWord( )
WordGenerator myWordGenerator = new WordGenerator();
string word = myWordGenerator.GetWord(PartOfSpeech.noun);
jewel
GetWords( )
WordGenerator myWordGenerator = new WordGenerator();
List<string> advs = myWordGenerator.GetWords(PartOfSpeech.adv, 5);
abnormally
boastfully
daintily
shakily
surprisingly
IsWord ()
WordGenerator myWordGenerator = new WordGenerator();
bool isWord = myWordGenerator.IsWord("exemplary");
true
IsPartOfSpeech( )
WordGenerator myWordGenerator = new WordGenerator();
bool isPartOfSpeech = myWordGenerator.IsPartOfSpeech("ball", PartOfSpeech.noun);
true
GetPatterns( )
WordGenerator myWordGenerator = new WordGenerator();
List<PartOfSpeech> pattern = new List<PartOfSpeech>();
pattern.Add(PartOfSpeech.adv);
pattern.Add(PartOfSpeech.adj);
pattern.Add(PartOfSpeech.noun);
List<string> patterns = myWordGenerator.GetPatterns(pattern, ' ', 10);
clearly calm bandana
doubtfully majestic pizza
faithfully acidic bat
freely bustling earthquake
hastily corrupt cake
jealously poised harmony
lively golden lizard
mechanically foolish mitten
successfully spherical scooter
upbeat salty soldier
SetSeed( ) - thanks michaldivis!
WordGenerator myWordGenerator = new WordGenerator(seed:123456);
myWordGenerator.SetSeed(654321);
SetRandom( )
myWordGenerator.SetRandom(new Random(654321));
string word = myWordGenerator.GetWord(PartOfSpeech.noun);
Features
Recently Added
- v0.9.4 - SetSeed()
- v0.9.4 - SetRandom()
- v0.9.3 - package prefix
- v0.9.2 - IsWord()
Planned Features
- Other languages are not planned but can be added as .txt files in a folder of the language abreviation
- ES
- FR
- etc.
Tools
License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- No dependencies.
-
net6.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on CrypticWizard.RandomWordGenerator:
Package | Downloads |
---|---|
N8.NetTools.Crypto
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Added random seed inputs - thanks michaldivis!