Gibberish 1.0.0
See the version list below for details.
dotnet add package Gibberish --version 1.0.0
NuGet\Install-Package Gibberish -Version 1.0.0
<PackageReference Include="Gibberish" Version="1.0.0" />
paket add Gibberish --version 1.0.0
#r "nuget: Gibberish, 1.0.0"
// Install Gibberish as a Cake Addin #addin nuget:?package=Gibberish&version=1.0.0 // Install Gibberish as a Cake Tool #tool nuget:?package=Gibberish&version=1.0.0
Generate Gibberish
Easily generate random strings for testing or demo purposes. Any Word, Sentence or Paragraph will automatically convert to a string, so you can easily instantiate your models.
Example
Consider the following model:
public class Thing
{
public string Name { get; set; }
public string ShortDescription { get; set; }
public string Description { get; set; }
public override string ToString()
=> $"Name: {Name}\r\nShort description: {ShortDescription}\r\nDescription: {Description}";
}
The following code:
var thing = new Thing
{
Name = new Word(),
ShortDescription = new Sentence(),
Description = new Paragraph()
};
Console.WriteLine(thing);
Will output something like:
Name: civilization
Short description: Of there my.
Description: Chance but and loquitur. To it now violent. Generally a I enter other. No thing this save feel the country, of. Around do in to get weekend a beer, pleasures. I is both turn galaxy or. They've mean believed. Run, two a of you rather. Into been we seized entrusted. A of by it, going, go. Hag-ridden a is thing time risky wild toast gambling.
Every time a new Gibberish object is created it will be populated with a new random string. Any existing Gibberish object will maintain its value throughout its lifespan.
Feel free to use the library to write emails to your boss, your next scientific paper, or even a bestselling book.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.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.