Answers for "find certain value in list of object c#"

C#
2

c# find one object in list where

var element = myList.Find(e => [some condition on e]);
Posted by: Guest on August-17-2021
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

Code answers related to "find certain value in list of object c#"

C# Answers by Framework

Browse Popular Code Answers by Language