Answers for "find a value in list of objects in c#"

4

find a value in list of objects in c#

var item = TextPool.FirstOrDefault(o => o.Name == "test");
if (item != null)
       item.value = "Value";
Posted by: Guest on April-03-2020
0

get specific object in list c#

list1[0];
Posted by: Guest on April-26-2020

Code answers related to "find a value in list of objects in c#"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language