I have an array with multiple items in it. I want to pull a value of an item from the array where specific items value is "X"
so here is what I want
Collection Items
collection.Item(0).StateAlpha = 'AR'
collection.Item(0).PolicyType = P
collection.Item(0).HasAClaim = N
collection.Item(0).HasAClaimThisMod = N
collection.Item(0).SearchStatus = P
collection.Item(0).Mod = 2
collection.Item(1).StateAlpha = 'AZ'
collection.Item(1).PolicyType = P
collection.Item(1).HasAClaim = N
collection.Item(1).HasAClaimThisMod = N
collection.Item(1).SearchStatus = P
collection.Item(1).Mod = 3
and so on ......
this is what i want to do
string x = get me the value from collection where Mod = 3