I have a ListView that displays the data on the screen and has multiple rows and columns. For example:
Cl1 | Cl2 | Cl3 L1 aa | bb | cc L2 ab | bc | cd L3 ac | bd | ce
I would like to know if you have some native C # function (type: lambda, LINQ, etc), to search and change the values in the ListView? For example: Search for 'ab' (Cl1, L2), and change 'cd' (Cl3, L2) to 'test'.