I was thinking to use Tuple class to store 2 integer information (StartAddress, EndAddress) I need in my program.
But I discover that Tuple items are ReadOnly, so if I need to set a value for an item, I need to re-instantiate a Tuple.
What is the reason behind this design decision?