I'm sure this is a thing that can be done, well I think so. I want something similar to a list of, but instead of an index of numbers for the index it has strings as the index. What I want to be able to do is store a list of names which then have values so for example:
Index: "Bill", Value: 34234
Index: "Hagrid", Value: 4523445
and so on.
I could of course just build a custom class, then have a list of that class, but I want to be able to do *.contains on the list, which you can't do with custom classes, you would have to instead loop through the list of and check each item if it matches. I more or less asking if something like the above exists in vb.net, I could of sworn I've seen something like it somewhere.
I run into this problem a lot and varies a lot, and I dont want to have to create 10 tiny little classes just for storing data.