Tuple
-
에서 사용됩니다.- 데이터 세트에 더 쉽게 액세스할 수 있습니다.
- 데이터 세트를 더 쉽게 조작할 수 있습니다.
- 단일 데이터 세트를 나타냅니다.
- 메소드에서 여러 값을 반환하려면
- 메서드에 여러 값을 전달하려면
예
이제 C#에서 4-튜플을 구현하는 예를 살펴보겠습니다 −
using System; public class Demo { public static void Main(string[] args) { Tuple<string,string,string,string> tuple = new Tuple<string,string,string,string>("nathan", "steve", "katie", "tim"); Console.WriteLine("Value (Item1)= " + tuple.Item1); Console.WriteLine("Value (Item2)= " + tuple.Item2); Console.WriteLine("Value (Item3)= " + tuple.Item3); Console.WriteLine("Value (Item4)= " + tuple.Item4); if (tuple.Item1 == "nathan") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item1); } if (tuple.Item2 == "jack") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item2); } if (tuple.Item3 == "katie") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item3); } if (tuple.Item4 == "tom") { Console.WriteLine("Exists: Tuple Value = " +tuple.Item4); } } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Value (Item1)= nathan Value (Item2)= steve Value (Item3)= katie Value (Item4)= tom Exists: Tuple Value = nathan Exists: Tuple Value = katie
예
이제 C#에서 4-튜플을 구현하는 또 다른 예를 살펴보겠습니다. −
using System; public class Demo { public static void Main(string[] args) { Tuple<int,int,int,int> tuple = new Tuple<int,int,int,int>(100, 150, 300, 450); Console.WriteLine("Value (Item1)= " + tuple.Item1); Console.WriteLine("Value (Item2)= " + tuple.Item2); Console.WriteLine("Value (Item3)= " + tuple.Item3); Console.WriteLine("Value (Item4)= " + tuple.Item4); if (tuple.Item1 == 100) { Console.WriteLine("Exists: Tuple Item 1 = " +tuple.Item1); } if (tuple.Item2 == 250) { Console.WriteLine("Exists: Tuple Item 2 = " +tuple.Item2); } if (tuple.Item3 == 270) { Console.WriteLine("Exists: Tuple Item 3 = " +tuple.Item3); } if (tuple.Item4 == 300) { Console.WriteLine("Exists: Tuple Item 4 = " +tuple.Item4); } } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Value (Item1)= 100 Value (Item2)= 150 Value (Item3)= 300 Value (Item4)= 450 Exists: Tuple Item 1 = 100