ImmutableList<T>.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 the specified object from this immutable list. |
Remove(T, IEqualityComparer<T>) |
Removes the first occurrence of the object that matches the specified value from this immutable list. |
Remove(T)
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
Removes the first occurrence of the specified object from this immutable list.
public:
System::Collections::Immutable::ImmutableList<T> ^ Remove(T value);
public System.Collections.Immutable.ImmutableList<T> Remove (T value);
member this.Remove : 'T -> System.Collections.Immutable.ImmutableList<'T>
Public Function Remove (value As T) As ImmutableList(Of T)
Parameters
- value
- T
The object to remove.
Returns
A new list with the object removed, or this list if the specified object is not in this list.
Applies to
Remove(T, IEqualityComparer<T>)
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
Removes the first occurrence of the object that matches the specified value from this immutable list.
public:
System::Collections::Immutable::ImmutableList<T> ^ Remove(T value, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public System.Collections.Immutable.ImmutableList<T> Remove (T value, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
public System.Collections.Immutable.ImmutableList<T> Remove (T value, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
member this.Remove : 'T * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function Remove (value As T, equalityComparer As IEqualityComparer(Of T)) As ImmutableList(Of T)
Parameters
- value
- T
The value of the element to remove from the list.
- equalityComparer
- IEqualityComparer<T>
The equality comparer to use in the search.
Returns
A new list with the object removed, or this list if the specified object is not in this list.
Applies to
.NET