How can I convert a C# list into something that's hashable?
- by gatoatigrado
I want something along the lines of Python's tuples (or, for sets, frozensets), which are hashable. I have a List<String> which is most certainly not hashing correctly (i.e. by value).