ImmutableArray<T>.Replace Method

Definition

Overloads

Replace(T, T)

Finds the first element in the array equal to the specified value and replaces the value with the specified new value.

Replace(T, T, IEqualityComparer<T>)

Finds the first element in the array equal to the specified value and replaces the value with the specified new value.

Replace(T, T)

Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs

Finds the first element in the array equal to the specified value and replaces the value with the specified new value.

C#
public System.Collections.Immutable.ImmutableArray<T> Replace(T oldValue, T newValue);

Parameters

oldValue
T

The value to find and replace in the array.

newValue
T

The value to replace the oldvalue with.

Returns

A new array that contains newValue even if the new and old values are the same.

Exceptions

oldValue is not found in the array.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8 (package-provided), 8, 9 (package-provided), 9, 10 (package-provided), 10
.NET Standard 2.0 (package-provided)
UWP 10.0

Replace(T, T, IEqualityComparer<T>)

Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs

Finds the first element in the array equal to the specified value and replaces the value with the specified new value.

C#
public System.Collections.Immutable.ImmutableArray<T> Replace(T oldValue, T newValue, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
C#
public System.Collections.Immutable.ImmutableArray<T> Replace(T oldValue, T newValue, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);

Parameters

oldValue
T

The value to find and replace in the array.

newValue
T

The value to replace the oldvalue with.

equalityComparer
IEqualityComparer<T>

The equality comparer to use to compare values.

Returns

A new array that contains newValue even if the new and old values are the same.

Exceptions

oldValue is not found in the array.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8 (package-provided), 8, 9 (package-provided), 9, 10 (package-provided), 10
.NET Standard 2.0 (package-provided)
UWP 10.0