Algorithms..::..ReplaceInPlace<(Of <(<'T>)>)> Method (IList<(Of <(<'T>)>)>, T, T)
Replace all items in a list or array equal to a particular value with another value. The replacement is done in-place, changing
the list.
Namespace:
Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
Type Parameters
- T
Parameters
- list
- Type: IList<(Of <(<'T>)>)>
The list or array to process.
- itemFind
- Type: T
The value to find and replace within collection.
- replaceWith
- Type: T
The new value to replace with.