DKNet.RandomCreator
10.0.27
dotnet add package DKNet.RandomCreator --version 10.0.27
NuGet\Install-Package DKNet.RandomCreator -Version 10.0.27
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="DKNet.RandomCreator" Version="10.0.27" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DKNet.RandomCreator" Version="10.0.27" />
<PackageReference Include="DKNet.RandomCreator" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DKNet.RandomCreator --version 10.0.27
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DKNet.RandomCreator, 10.0.27"
#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.
#:package DKNet.RandomCreator@10.0.27
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DKNet.RandomCreator&version=10.0.27
#tool nuget:?package=DKNet.RandomCreator&version=10.0.27
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DKNet.RandomCreator
A lightweight .NET library for generating random strings and character arrays, suitable for passwords, tokens, and other random data needs. Uses cryptographically secure random number generation.
Features
- Generate random strings or char arrays of any length
- Enforce minimum numbers and special characters
- Optionally restrict to alphabetic-only output
- Simple static API with flexible options
- .NET 9.0 compatible
Installation
Add the NuGet package to your project:
dotnet add package DKNet.RandomCreator
Usage
using DKNet.RandomCreator;
// Generate a random string (default length 25)
string randomString = RandomCreators.NewString();
// Generate a random string of length 32, with at least 4 numbers and 2 special characters
var options = new StringCreatorOptions { MinNumbers = 4, MinSpecials = 2 };
string strongPassword = RandomCreators.NewString(32, options);
// Generate a random alphabetic-only string of length 16
var alphaOptions = new StringCreatorOptions { AlphabeticOnly = true };
string alphaString = RandomCreators.NewString(16, alphaOptions);
// Generate a random char array with options
char[] randomChars = RandomCreators.NewChars(20, options);
API
RandomCreators.NewString(int length = 25, StringCreatorOptions? options = null): Returns a random string with optional constraints.RandomCreators.NewChars(int length = 25, StringCreatorOptions? options = null): Returns a random char array with optional constraints.StringCreatorOptions: Options to control alphabetic-only, minimum numbers, and minimum special characters.
License
MIT © 2026 drunkcoding
Repository
https://github.com/baoduy/DKNet
Contributing
Pull requests and issues are welcome!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.27 | 103 | 5/22/2026 |
| 10.0.26 | 95 | 5/19/2026 |
| 10.0.25 | 300 | 3/27/2026 |
| 10.0.24 | 109 | 3/27/2026 |
| 10.0.23 | 106 | 3/27/2026 |
| 10.0.22 | 105 | 3/26/2026 |
| 10.0.21 | 134 | 3/17/2026 |
| 10.0.20 | 124 | 2/2/2026 |
| 10.0.19 | 245 | 1/21/2026 |
| 10.0.18 | 110 | 1/21/2026 |
| 10.0.17 | 132 | 1/19/2026 |
| 10.0.16 | 120 | 1/18/2026 |
| 10.0.15 | 120 | 1/18/2026 |
| 10.0.14 | 122 | 1/18/2026 |
| 10.0.13 | 111 | 1/17/2026 |
| 10.0.12 | 115 | 1/17/2026 |
| 10.0.11 | 125 | 1/17/2026 |
| 10.0.10 | 114 | 1/17/2026 |
| 10.0.9 | 125 | 1/16/2026 |
| 10.0.8 | 121 | 1/16/2026 |
Loading failed