Primpy
❔ How to make a list of tuples that hold references?
I want to create a List that holds reference for two types of objects: one class object and one string. For this, I tried using tuples. However, it seems like when I create a tuple (with a constructor or with Tuple.Create), copies of those two objects will be created instead of references. What would be a solution for this?
20 replies