I want to setup a hash like in ruby. So instead of just calling an index by a number I could use a string.
Ruby Example:
hash = {}
hash["string"] = 5
Anyway to set something like that in c#?
HashSet in System.Collections.Generic
I think you have Map and Dictionary for that as well. All of them should be in System.Collections.Generic.