List
Provides various extensions for IList<T> interface.
Provides strongly-typed access to list indexer.
Returns read-only view of the list.
public static ReadOnlyListView<I, O> Convert<I, O>(this IReadOnlyList<I> list, Converter<I, O> converter)
Returns lazily converted read-only list.
Returns get_Item as delegate
attached to the list instance.
Returns get_Item as delegate
attached to the list instance.
Returns set_Item as delegate
attached to the list instance.
Constructs read-only list with single item in it.
Converts list into array and perform mapping for each
element.
Converts list into array and perform mapping for each
element.