How Search in List with C# and edit its value find is there 5, change its value with 9?
List<int> myList = new List<int>() { 8, 5, 6, 2, 3 };
|
How Search in List with C# and edit its value find is there 5, change its value with 9?
|
|||
|
Depending on the situation, you could do something like this
|
|||
|
|
|
You can just use a simple for loop and check whether the value of the current element equals 5 and if so just set it to 9, like this:
|
|||
|
|
|
For some reason I could not think of anything better than:
You could wrap it in an Extension method and use it like this:
|
||||
|
|
|
||||
|
foreach/for/lamda/myList[i]google? – Nate Dec 30 '12 at 23:48RemoveAll, and add that number of elements back to your list. RemoveAll returns the number of elements removed, so that's how to know how many to add back. – vcsjones Dec 31 '12 at 0:08