using HumanReadableIdCreator;
public static void Main()
var id = HumanReadableId.Create();
Console.WriteLine($"Default: {id}");
id = HumanReadableId.Create(WordType.Adjective, WordType.Verb, WordType.Verb, WordType.Animal);
Console.WriteLine($"Custom pattern: {id}");
id = HumanReadableId.Generate(new Config
SeparationChar = string.Empty,
LowerCasePassphrase = false
}, WordType.Verb, WordType.Adjective, WordType.Animal);
Console.WriteLine($"Custom pattern w/ config: {id}");