
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
How to get First Element of the Tuple in C#?
To get the first element of the Tuple, the code is as follows −
Example
using System; public class Demo { public static void Main(String[] args){ var tuple1 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500); var tuple2 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500); Console.WriteLine("Is Tuple1 equal to Tuple2? = "+tuple1.Equals(tuple2)); Console.WriteLine("HashCode of Tuple1 = "+tuple1.GetHashCode()); Console.WriteLine("HashCode of Tuple2 = "+tuple2.GetHashCode()); Console.WriteLine("Tuple1 Item 5th = "+tuple1.Item5); Console.WriteLine("Tuple2 Item 5th = "+tuple2.Item5); Console.WriteLine("Tuple1 Item 1st = "+tuple1.Item1); Console.WriteLine("Tuple2 Item 1st = "+tuple2.Item1); } }
Output
This will produce the following output −
Is Tuple1 equal to Tuple2? = True HashCode of Tuple1 = 3231587 HashCode of Tuple2 = 3231587 Tuple1 Item 5th = 100 Tuple2 Item 5th = 100 Tuple1 Item 1st = 75 Tuple2 Item 1st = 75
Example
Let us see another example −
using System; public class Demo { public static void Main(String[] args){ var tuple = Tuple.Create(1200, 1500, 2200, 2700, 3100, 3500, 4500, 5500); Console.WriteLine("HashCode of Tuple = "+tuple.GetHashCode()); Console.WriteLine("Tuple Item 1st = "+tuple.Item1); Console.WriteLine("Tuple Item 2nd = "+tuple.Item2); Console.WriteLine("Tuple Item 3rd = "+tuple.Item3); Console.WriteLine("Tuple Item 4th = "+tuple.Item4); Console.WriteLine("Tuple Item 5th = "+tuple.Item5); Console.WriteLine("Tuple Item 6th = "+tuple.Item6); Console.WriteLine("Tuple Item 7th = "+tuple.Item7); } }
Output
This will produce the following output −
HashCode of Tuple = 49989024 Tuple Item 1st = 1200 Tuple Item 2nd = 1500 Tuple Item 3rd = 2200 Tuple Item 4th = 2700 Tuple Item 5th = 3100 Tuple Item 6th = 3500 Tuple Item 7th = 4500
- Related Articles
- How to get Fourth Element of the Tuple in C#?
- How to get Sixth Element of the Tuple in C#?
- How to get Third Element of the Tuple in C#?
- How to get Second Element of the Tuple in C#?
- How to get Seventh Element of the Tuple in C#?
- How to get Fifth Element of the Tuple in C#?
- How to get the first element of the List in Java?
- How to pop-up the first element from a Python tuple?
- How to get the first element of an array in PHP?
- How to group Python tuple elements by their first element?
- How to get first element in android ConcurrentLinkedDeque?
- Get the first element of array in JavaScript
- Sort tuple based on occurrence of first element in Python
- Get first index values in tuple of strings in Python
- Get tuple element data types in Python

Advertisements