Generator Pools
var shortnames = new NameGenerator()
.Any(x => x
.First("str")
.Middle("ou"))
.SetSize(2);
var longnames = new NameGenerator()
.Start(x => x
.First("lmn")
.Middle("ae'") // Note the apostrophe
.Last("zs"))
.Inner(x => x
.CopyStart())
.End(x => x
.Middle("aeio"))
.SetSize(3);
var pool = new GeneratorPool<string>()
.Add(shortnames)
.Add(longnames);Last updated