Exemplo n.º 1
0
 /// <summary>
 /// Get <see cref="RepeatReader"/>
 /// </summary>
 public static RepeatReader Repeat(this ConsoleReader cr, int count) => new RepeatReader(cr, count);
Exemplo n.º 2
0
 internal RepeatReader(ConsoleReader cr, int count)
 {
     this.cr = cr; this.count = count;
 }