Click or drag to resize

EquatableListT Methods

The EquatableListT generic type exposes the following members.

Methods
  NameDescription
Public methodAdd(IEnumerableT)
Public methodAdd(T)
Public methodAddFromDelimitedString
Public methodAddIfNotPresent
Adds value to collection if it is not already present.
Public methodClear
Public methodContains
Public methodContainsCommonItems
Returns true if the collection contains one or more items that is present in source.
Public methodContainsExactly(T)
Checks if the list contains a single value which is the one specified.
Public methodContainsExactly(EquatableListT)
Checks if the list contains exactly the same items as source. Duplicate values are, however, ignored. The items doesn't have to occur in the same order.
Public methodContainsOrEmpty
Returns true if the list is empty or if it contains a specific value.
Public methodCopyTo
Public methodEquals (Overrides ObjectEquals(Object).)
Public methodExists
Does the collection contains elements matching the conditions defined by the predicate. Similar to List>T<.Exists.
Public methodFind
Public methodFindAll
Public methodFindIndex
Public methodFindLast
Public methodFindLastIndex
Public methodForEach
Public methodGetCommonItems
Returns the elements that are contained in source.
Public methodGetEnumerator
Public methodGetHashCode
Serves as a hash function for a particular type. GetHashCode is suitable for use in hashing algorithms and data structures like a hash table.
(Overrides ObjectGetHashCode.)
Public methodGetUncommonItems
Returns the elements that are NOT contained in source.
Public methodIndexOf
Public methodInsert
Public methodRemove
Public methodRemoveAt
Public methodRemoveDuplets
Sorts the list (ascending) and removes duplets.
Public methodSort
Public methodSplitValues
Splits the list into a number of smaller lists.
Public methodToArray
Public methodToList
Public methodToString (Overrides ObjectToString.)
Public methodToString(String)
Public methodTrueForAll
Does all elements in the collection matching the conditions defined by the predicate. Similar to List>T<.TrueForAll
Top
Extension Methods
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate methodIListAdd
Adds an item to the IList.
Explicit interface implementationPrivate methodIListContains
Determines whether the IList contains a specific value.
Explicit interface implementationPrivate methodICollectionCopyTo
Copies the elements of the ICollection to an Array, starting at a particular Array index.
Explicit interface implementationPrivate methodIEnumerableGetEnumerator
Returns an enumerator that iterates through a collection.
Explicit interface implementationPrivate methodIListIndexOf
Determines the index of a specific item in the IList.
Explicit interface implementationPrivate methodIListInsert
Inserts an item to the IList at the specified index.
Explicit interface implementationPrivate methodIListRemove
Removes the first occurrence of a specific object from the IList.
Top
See Also