Is there a version of the class Tuple whose Items properties are not readonly and can be set? [duplicate]
This question already has an answer here : Class inheritance: recreate base class items (or instance) from a property of the inherited class (1 answer) Closed 4 years ago . I want to know whether there is a built-in version of the class Tuple whose Items properties are not readonly and can be set. Or can someone provide me such a version? I am searching for a solution that implements the base functions of the Tuple class, ( Equals , GetHashCode ) Ritch Melton No, as mentioned a Tuple<> is intended to be immutable. I use a custom Pair class if I need a mutable type that does the same thing,