Transforms
Using a basic transform
var names = new NameGenerator()
.Any(x => x // For all syllables...
.First("lmnstr") // Use these consonants
.Middle("aeiou")) // And these vowels
.Transform(x => x.Append("nia")) // Then add this suffix to the final name
.SetSize(2);Surunia
Timania
LisoniaUsing a multistep transform
Using a probabilistic transform
Chancing a transform
Last updated