ExtensionMethods.ToFilteringBindingList<T> Method |
Converts the passed in enumerable to a FilteringBindingList
Namespace:
SD.LLBLGen.Pro.Core
Assembly:
SD.LLBLGen.Pro.Core (in SD.LLBLGen.Pro.Core.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic static FilteringBindingList<T> ToFilteringBindingList<T>(
this IEnumerable<T> toEnumerate
)
<ExtensionAttribute>
Public Shared Function ToFilteringBindingList(Of T) (
toEnumerate As IEnumerable(Of T)
) As FilteringBindingList(Of T)
Parameters
- toEnumerate
- Type: System.Collections.Generic.IEnumerable<T>
To enumerate.
Type Parameters
- T
Return Value
Type:
FilteringBindingList<T>The elements in toEnumerate wrapped in a FilteringBindingList
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerable<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also