Statistics
The Highest Post







Statistics
Count 98
Avg 20.27
Min 3
Max 21
Angualr Top questions

Details



Peter Agyekum What is use of tuple in C#? A tuple is a generic static class that was added to C# 4.0 and it can hold any amount of elements, and they can be any type we want. So using a tuple, we can return multiple values. ... A tuple allows you to combine multiple values of possibly different types into a single object without having to create a custom class.
Related Topics