For each item in the collection, I need to have a short string and a few int16 fields. I want to iterate through the collection using the string field (meaning I don’t want to use numeric index to iterate).
The collection is at most about 10 items. Thanks for any suggestions.
For each item in the collection, I need to have a short string and
Share
I think
Dictionary<string, List<int>>should work for you needs.