Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

메서드에서 C# 튜플 반환

<시간/>

먼저 아래와 같이 메소드를 호출하는 튜플을 생성합니다.

var tuple = Show();

위의 명령문은 다음 메소드를 호출합니다 -

static Tuple<int, int, int, int, int> Show()

메서드 아래에서 아래와 같이 튜플을 반환합니다. -

예시

using System;
public class Demo {
   public static void Main() {
      var tuple = Show();
      Console.WriteLine(tuple.Item1);
      Console.WriteLine(tuple.Item2);
      Console.WriteLine(tuple.Item3);
      Console.WriteLine(tuple.Item4);
      Console.WriteLine(tuple.Item5);
   }
   static Tuple<int, int, int, int, int> Show() {
      return Tuple.Create(3, 5, 7, 9, 11);
   }
}

출력

3
5
7
9
11