Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create a tuple with string and int items in C#?
Firstly, set two items in the tuple.
Tuple<int, string> tuple = new Tuple<int, string>(20, "Tom");
Now check for first item in the tuple, which is an integer.
if (tuple.Item1 == 20) {
Console.WriteLine(tuple.Item1);
}
Now check for second item in the tuple, which is a string −
if (tuple.Item2 == "Tom") {
Console.WriteLine(tuple.Item2);
}
The following is an example to create a tuple with string and int items.
Example
using System;
using System.Threading;
namespace Demo {
class Program {
static void Main(string[] args) {
Tuple<int, string> tuple = new Tuple<int, string>(20, "Tom");
if (tuple.Item1 == 20) {
Console.WriteLine(tuple.Item1);
}
if (tuple.Item2 == "Tom") {
Console.WriteLine(tuple.Item2);
}
}
}
}
Output
20 Tom
Advertisements