Match<>(input, generex, startAt) MatchExact<>(input, generex, mustStartAt, mustEndAt) New<>(comparer, elements) Not<>(comparer, elements)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Extension method: Generex<T> CreateAnythingGenerex<T>(this T[])Declarationpublic static Generex<T> CreateAnythingGenerex<T>(
this T[] input
) Summary
Returns a regular expression that matches any number of elements, no matter what they are; fewer are
prioritized (cf. .*? in traditional regular expression syntax). Generic type parametersT |
Type of objects that the regular expression will later match against. |
Parametersthis T[] | input |
The value of this parameter is ignored, but can be used for type inference to enable matching of collections
of anonymous types. |
See also |