Tuple
इसका उपयोग -
. में किया जाता है- डेटा सेट तक आसान पहुंच।
- डेटा सेट का आसान हेरफेर।
- डेटा के एकल सेट का प्रतिनिधित्व करने के लिए।
- किसी विधि से अनेक मान लौटाने के लिए
- एक विधि में कई मान पास करने के लिए
इसके तीन गुण हैं -
-
आइटम1 − वर्तमान Tuple
ऑब्जेक्ट के पहले घटक का मान प्राप्त करें। -
आइटम2 −वर्तमान Tuple
ऑब्जेक्ट के दूसरे घटक का मान प्राप्त करें। -
आइटम3 - वर्तमान Tuple
ऑब्जेक्ट के तीसरे घटक का मान प्राप्त करें।
उदाहरण
आइए अब सी# में 3-टुपल को लागू करने के लिए एक उदाहरण देखें -
using System;
public class Demo {
public static void Main(string[] args) {
Tuple<int,string,string> tuple = new Tuple<int,string,string>(35, "steve", "katie");
Console.WriteLine("Value (Item1)= " + tuple.Item1);
Console.WriteLine("Value (Item2)= " + tuple.Item2);
Console.WriteLine("Value (Item3)= " + tuple.Item3);
if (tuple.Item1 == 35) {
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);
}
}
} आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Value (Item1)= 35 Value (Item2)= steve Value (Item3)= katie Exists: Tuple Value = 35 Exists: Tuple Value = katie
उदाहरण
आइए अब सी# में 3-टुपल को लागू करने के लिए एक और उदाहरण देखें -
using System;
public class Demo {
public static void Main(string[] args) {
Tuple<string,string,string> tuple = new Tuple<string,string,string>("nathan", "steve", "katie");
Console.WriteLine("Value (Item1)= " + tuple.Item1);
Console.WriteLine("Value (Item2)= " + tuple.Item2);
Console.WriteLine("Value (Item3)= " + tuple.Item3);
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);
}
}
} आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Value (Item1)= nathan Value (Item2)= steve Value (Item3)= katie Exists: Tuple Value = nathan Exists: Tuple Value = katie