CharacterRegion

struct CharacterRegion : System.ValueType
char Start
char End
CharacterRegion Default
System.Collections.Generic.IEnumerable<Char> Characters()
bool Any<T>(System.Collections.Generic.IEnumerable<T> source)

Test if there is an element in this enumeration.

Type Parameters:
 
  • T – Type of the element
Parameters:
  • source (System.Collections.Generic.IEnumerable<T>) – The enumerable source.
Returns:

true if there is an element in this enumeration, false otherwise

System.Collections.Generic.IEnumerable<TResult> SelectMany<TSource, TResult>(System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, IEnumerable`1> selector)

Select elements from an enumeration.

Type Parameters:
 
  • TSource – The type of the T source.
  • TResult – The type of the T result.
Parameters:
  • source (System.Collections.Generic.IEnumerable<TSource>) – The source.
  • IEnumerable`1> selector (System.Func<TSource,) – The selector.
Returns:

A enumeration of selected values

System.Collections.Generic.IEnumerable<TSource> Distinct<TSource>(System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IEqualityComparer<TSource> comparer)

Selects distinct elements from an enumeration.

Type Parameters:
 
  • TSource – The type of the T source.
Parameters:
  • source (System.Collections.Generic.IEnumerable<TSource>) – The source.
  • comparer (System.Collections.Generic.IEqualityComparer<TSource>) – The comparer.
Returns:

A enumeration of selected values