ImmutableList<T>.Builder.Remove Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Remove(T) |
Removes the first occurrence of a specific object from the immutable list. |
Remove(T, IEqualityComparer<T>) |
Removes the first occurrence matching the specified value from this list. |
Remove(T)
- Source:
- ImmutableList_1.Builder.cs
- Source:
- ImmutableList_1.Builder.cs
- Source:
- ImmutableList_1.Builder.cs
Removes the first occurrence of a specific object from the immutable list.
public:
virtual bool Remove(T item);
public bool Remove (T item);
abstract member Remove : 'T -> bool
override this.Remove : 'T -> bool
Public Function Remove (item As T) As Boolean
Parameters
- item
- T
The object to remove from the list.
Returns
true
if item was successfully removed from the list; otherwise, false
. This method also returns false
if item is not found in the list.
Implements
Applies to
Remove(T, IEqualityComparer<T>)
- Source:
- ImmutableList_1.Builder.cs
- Source:
- ImmutableList_1.Builder.cs
- Source:
- ImmutableList_1.Builder.cs
Removes the first occurrence matching the specified value from this list.
public:
bool Remove(T item, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public bool Remove (T item, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
member this.Remove : 'T * System.Collections.Generic.IEqualityComparer<'T> -> bool
Public Function Remove (item As T, equalityComparer As IEqualityComparer(Of T)) As Boolean
Parameters
- item
- T
The item to remove.
- equalityComparer
- IEqualityComparer<T>
The equality comparer to use in the search.
If null
, Default is used.
Returns
A value indicating whether the specified element was found and removed from the collection.