Hello,
I have Dictionary<long, Location> PostalCodes
.
While i m adding new elements to this Dictionary I want to make a lookup to this dictionary and if the Location.PostalCode
is not in this dictionary, I want to insert it. Otherwise I want to skip it. So , need to know if the PostalCode is already in the Collection. Cant use it as the key.
How to do this?
Thanks.