示例#1
0
 /// <summary>
 /// Runs the creator function between 2 and 100 times and returns the results in an IEnummerable.
 /// </summary>
 /// <param name="creator">The creator function that is called many times.</param>
 public IEnumerable <T> GenerateMany <T>(Func <T> creator) =>
 _context.GenerateMany(creator);