MemoryExtensions.Replace 方法

定義

多載

Replace<T>(ReadOnlySpan<T>, Span<T>, T, T, IEqualityComparer<T>)
Replace<T>(Span<T>, T, T, IEqualityComparer<T>)
Replace<T>(Span<T>, T, T)

將所有出現的 oldValue 專案取代為 newValue

Replace<T>(ReadOnlySpan<T>, Span<T>, T, T)

source destination 複製到 ,將 的所有出現專案 oldValue 取代為 newValue

Replace<T>(ReadOnlySpan<T>, Span<T>, T, T, IEqualityComparer<T>)

C#
public static void Replace<T>(this ReadOnlySpan<T> source, Span<T> destination, T oldValue, T newValue, System.Collections.Generic.IEqualityComparer<T>? comparer = default);

類型參數

T

參數

destination
Span<T>
oldValue
T
newValue
T

適用於

.NET 10
產品 版本
.NET 10

Replace<T>(Span<T>, T, T, IEqualityComparer<T>)

C#
public static void Replace<T>(this Span<T> span, T oldValue, T newValue, System.Collections.Generic.IEqualityComparer<T>? comparer = default);

類型參數

T

參數

span
Span<T>
oldValue
T
newValue
T

適用於

.NET 10
產品 版本
.NET 10

Replace<T>(Span<T>, T, T)

來源:
MemoryExtensions.cs
來源:
MemoryExtensions.cs

將所有出現的 oldValue 專案取代為 newValue

C#
public static void Replace<T>(this Span<T> span, T oldValue, T newValue) where T : IEquatable<T>;

類型參數

T

範圍中專案的型別。

參數

span
Span<T>

應該取代元素的範圍。

oldValue
T

要取代 newValue 為 的值。

newValue
T

要取代 所有出現的 oldValue 值。

適用於

.NET 10 及其他版本
產品 版本
.NET 8, 9, 10

Replace<T>(ReadOnlySpan<T>, Span<T>, T, T)

來源:
MemoryExtensions.cs
來源:
MemoryExtensions.cs

source destination 複製到 ,將 的所有出現專案 oldValue 取代為 newValue

C#
public static void Replace<T>(this ReadOnlySpan<T> source, Span<T> destination, T oldValue, T newValue) where T : IEquatable<T>;

類型參數

T

範圍中專案的型別。

參數

source
ReadOnlySpan<T>

要複製的範圍。

destination
Span<T>

複製和取代值應該寫入的範圍。

oldValue
T

要取代 newValue 為 的值。

newValue
T

要取代 所有出現的 oldValue 值。

例外狀況

範圍 destinationsource 範圍短。 -或- sourcedestination 重迭,但不參考相同的起始位置。

適用於

.NET 10 及其他版本
產品 版本
.NET 8, 9, 10