C# Tuple
Tuple is a data structure that allows you to store a fixed number of elements of different types. It provides a convenient way to group related values together when you don't want to create a separate class or struct for that purpose.
Tuples in C#
Here are some important points to understand about Tuples in C#:
Flexible Composition
Tuples are flexible and can hold a combination of different data types. You can include elements of any valid C# type, including primitive types, custom classes, structs, and even other tuples.Immutable
Tuples are immutable, which means that once created, their values cannot be changed. However, you can create a new tuple with modified values if needed.Positional Access
Tuple elements can be accessed by their position using the dot notation, such as tuple.Item1, tuple.Item2, and so on. The elements are ordered based on the order in which they are declared when creating the tuple.Named Elements
Starting from C# 7.0, tuples can also have named elements. You can assign names to the elements when declaring the tuple, making it easier to understand the purpose of each element. Named elements can be accessed using the dot notation or by using the element name.
Let's explore some examples to see how to work with Tuples in C#:
Create a simple tuple without named elements:
In this example, we created a tuple with three elements: a string representing the person's name, an integer representing their age, and a string representing their city.
To access the tuple elements, you can use the positional notation:
You can also create a tuple with named elements:
In this example, we assigned names to each element of the tuple. Now, you can access the elements using their names:
Tuples are commonly used when you need to return multiple values from a method or when you want to group related values together.
Starting from C# 7.0, you can also use tuple deconstruction to directly assign tuple elements to separate variables:
In this case, the name and age variables will be assigned the corresponding values from the tuple.
Conclusion
Tuples provide a concise and efficient way to work with a fixed number of related values. They are especially useful in scenarios where you need a lightweight structure to hold temporary or small sets of data. However, if you have a more complex data structure with behavior and additional functionality, it is recommended to create a custom class or struct instead.