Better Programming

Advice for programmers.

Follow publication

Member-only story

A Deep Dive Into Tuples in C#

Jamie Burns
Better Programming
Published in
6 min readSep 6, 2022
Photo by Curology on Unsplash | image height altered

Tuples are great.

I clearly remember the days before tuples — having trouble figuring out the best way to return multiple values from a method. As soon as tuples were added to C#, I could see so many cases where they would be useful.

And, as they’ve been developed over subsequent versions of C#, they’ve improved. If you’ve not touched them since the early days of tuples, then you’d be forgiven for not recognising them now. They have completely changed, but it’s all good.

Let’s go through where tuples started from and then see how we can use them today.

Tuples Introduced in C#4

Way, way back in 2010, we got a new version of .NET and C#, and this was the first appearance of a tuple.

The aim of this new concept (new to C#, that is) was to make it easier when dealing with small numbers of values. Before tuples, we had to either create a custom class/struct to store the values or use a bunch of ref parameters — neither of which is ideal.

So, we got a new class, unsurprisingly called Tuple, which we could use to hold multiple data elements in a single structure.

Pretty simple, right?

We can define the tuple with generics to specify the data types it will contain, then create one that can be passed around as a single structure.

We can then grab the values out of this tuple:

Simple enough, but if you’re anything like me, those Item1 and Item2 properties are a little meaningless. Just taken on their own, you can’t tell what that value represents.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Jamie Burns
Jamie Burns

Written by Jamie Burns

Software Engineer, founder of Bungalow64 Technologies