DKNet.RandomCreator 9.0.27

There is a newer version of this package available.
See the version list below for details.
dotnet add package DKNet.RandomCreator --version 9.0.27
                    
NuGet\Install-Package DKNet.RandomCreator -Version 9.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="9.0.27" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DKNet.RandomCreator" Version="9.0.27" />
                    
Directory.Packages.props
<PackageReference Include="DKNet.RandomCreator" />
                    
Project file
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 9.0.27
                    
#r "nuget: DKNet.RandomCreator, 9.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@9.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=9.0.27
                    
Install as a Cake Addin
#tool nuget:?package=DKNet.RandomCreator&version=9.0.27
                    
Install as a Cake Tool

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 of any length
  • Optionally include symbols for stronger passwords
  • Simple static API
  • .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, no symbols)
string randomString = RandomCreators.String();

// Generate a random string of length 32, including symbols
string strongPassword = RandomCreators.String(32, includeSymbols: true);

// Generate a random char array
char[] randomChars = RandomCreators.Chars(16);

API

  • RandomCreators.String(int length = 25, bool includeSymbols = false): Returns a random string.
  • RandomCreators.Chars(int length = 25, bool includeSymbols = false): Returns a random char array.

License

MIT © 2026 drunkcoding

Repository

https://github.com/baoduy/DKNet

Contributing

Pull requests and issues are welcome!

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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.
  • net9.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
9.0.38 12 9/24/2025
9.0.37 44 9/23/2025
9.0.36 49 9/23/2025
9.0.35 34 9/23/2025
9.0.34 34 9/23/2025
9.0.33 59 9/21/2025
9.0.32 55 9/21/2025
9.0.31 238 9/19/2025
9.0.30 244 9/18/2025
9.0.29 243 9/18/2025
9.0.28 288 9/17/2025
9.0.27 249 9/17/2025
9.0.26 275 9/16/2025