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

 Live Demo

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

Updated on: 23-Jun-2020

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements