check list object specific property available using linq c# code example
Example: c# check list of objects for value
var matches = myList.Where(p => p.Name == nameToExtract);
var matches = myList.Where(p => p.Name == nameToExtract);