Chiaki by Steven P

<PackageReference Include="Chiaki" Version="0.2.0" />

 RandomExtensions

public static class RandomExtensions
Provides extensions for Random.
public static string GenerateString(this Random random, string characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", int length = 8)

Generates a string with random characters.

public static double NextDouble(this Random random, double minValue, double maxValue)

Gets a random double, between minValue and maxValue

public static float NextFloat(this Random random, float minValue, float maxValue)

Gets a random float, between minValue and maxValue