Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: Generex<T, IEnumerable<TResult>> Times(int)

  • Declared in: RT.Generexes.Generex<T, TResult>

Declaration

public Generex<T, IEnumerable<TResult>> Times(
    int times
)

Summary

Returns a regular expression that matches this regular expression the specified number of times (cf. {times} in traditional regular expression syntax).

Parameters

inttimes A non-negative number specifying the number of repetitions of the regular expression.

Exceptions

  • System.ArgumentOutOfRangeException
    times is negative.