CollectionCoreTRemoveRange Method |
Removes the elements in the range specified from this collection.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public int RemoveRange(
IEnumerable<T> toRemove
)
Public Function RemoveRange (
toRemove As IEnumerable(Of T)
) As Integer
Parameters
- toRemove
- Type: System.Collections.GenericIEnumerableT
To remove.
Return Value
Type:
Int32number of items removed
Remarks Raises OnListChanged(reset) once, instead of OnListChanged(ItemDeleted) for every T in toRemove.
See Also