Table of Contents

Class EnumerableExtensions

Namespace
RadioExt_Helper.utility
Assembly
RadioExt-Helper.dll
Extension methods for IEnumerable<T>.
public static class EnumerableExtensions
Inheritance
EnumerableExtensions
Inherited Members

Methods

ToBindingList<T>(IEnumerable<T>)

Generates a BindingList<T> from the specified IEnumerable<T>.
public static BindingList<T> ToBindingList<T>(this IEnumerable<T> source)

Parameters

source IEnumerable<T>
The IEnumerable<T> to get a BindingList<T> for.

Returns

BindingList<T>
A BindingList<T> representing the IEnumerable<T>.

Type Parameters

T
The type of object contained in the IEnumerable<T>.

Exceptions

ArgumentNullException
If source was null.