Answers for "search for particular string in json and list all the objects present in it through linq"

2

linq object list contains

using System.Linq;

bool exists = list.Any(x => x.surname == "Smith");
Posted by: Guest on August-03-2020

Code answers related to "search for particular string in json and list all the objects present in it through linq"

Browse Popular Code Answers by Language