search for string in list c# code example
Example: find value in object c#
var item = TextPool.FirstOrDefault(o => o.Name == "test");
if (item != null)
item.value = "Value";
var item = TextPool.FirstOrDefault(o => o.Name == "test");
if (item != null)
item.value = "Value";