I have Dictionary
public Dictionary<string, List<Location>> Locations { get; set; }
In location object, one key is is_update
I need to find if any of is_upate
true from dictionary?
I am new in C# and did not find relevant solution for this. Any help appriciated.