Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Set tuple as a method parameter in C#
Firstly, set a tuple
var tuple = Tuple.Create(100, 200, 300);
Now, pass the tuple as a method parameter −
Show(tuple);
Here’s our method.
static void Show(Tuple<int,int,int> tuple)
Now call the tuple values one by one as shown below −
Example
using System;
public class Program {
public static void Main() {
var tuple = Tuple.Create(100, 200, 300);
Show(tuple);
}
static void Show(Tuple<int,int,int> tuple) {
Console.WriteLine(tuple.Item1);
Console.WriteLine(tuple.Item2);
Console.WriteLine(tuple.Item3);
}
}
Output
100 200 300
Advertisements
