Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में टुपल का सातवां तत्व कैसे प्राप्त करें?

Tuple का सातवां तत्व प्राप्त करने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
public class Demo {
   public static void Main(String[] args) {
      var tuple1 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500);
      var tuple2 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500);
      Console.WriteLine("Is Tuple1 equal to Tuple2? = "+tuple1.Equals(tuple2));
      Console.WriteLine("HashCode of Tuple1 = "+tuple1.GetHashCode());
      Console.WriteLine("HashCode of Tuple2 = "+tuple2.GetHashCode());
      Console.WriteLine("Tuple1 Item 1st = "+tuple1.Item1);
      Console.WriteLine("Tuple2 Item 1st = "+tuple2.Item1);
      Console.WriteLine("Tuple1 Item 2nd = "+tuple1.Item2);
      Console.WriteLine("Tuple2 Item 2nd = "+tuple2.Item2);
      Console.WriteLine("Tuple1 Item 4th = "+tuple1.Item4);
      Console.WriteLine("Tuple2 Item 4th = "+tuple2.Item4);
      Console.WriteLine("Tuple1 Item 5th = "+tuple1.Item5);
      Console.WriteLine("Tuple2 Item 5th = "+tuple2.Item5);
      Console.WriteLine("Tuple1 Item 6th = "+tuple1.Item6);
      Console.WriteLine("Tuple2 Item 5th = "+tuple2.Item6);
      Console.WriteLine("Tuple1 Item 7th = "+tuple1.Item7);
      Console.WriteLine("Tuple2 Item 7th = "+tuple2.Item7);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

Is Tuple1 equal to Tuple2? = True
HashCode of Tuple1 = 3231587
HashCode of Tuple2 = 3231587
Tuple1 Item 1st = 75
Tuple2 Item 1st = 75
Tuple1 Item 2nd = 200
Tuple2 Item 2nd = 200
Tuple1 Item 4th = 700
Tuple2 Item 4th = 700
Tuple1 Item 5th = 100
Tuple2 Item 5th = 100
Tuple1 Item 6th = 1200
Tuple2 Item 5th = 1200
Tuple1 Item 7th = 1500
Tuple2 Item 7th = 1500

उदाहरण

आइए एक और उदाहरण देखें -

using System;
public class Demo {
   public static void Main(String[] args) {
      var tuple = Tuple.Create(1200, 1500, 2200, 2700, 3100, 3500, 4500, 5500);
      Console.WriteLine("HashCode of Tuple = "+tuple.GetHashCode());
      Console.WriteLine("Tuple Item 1st = "+tuple.Item1);
      Console.WriteLine("Tuple Item 2nd = "+tuple.Item2);
      Console.WriteLine("Tuple Item 3rd = "+tuple.Item3);
      Console.WriteLine("Tuple Item 4th = "+tuple.Item4);
      Console.WriteLine("Tuple Item 5th = "+tuple.Item5);
      Console.WriteLine("Tuple Item 6th = "+tuple.Item6);
      Console.WriteLine("Tuple Item 7th = "+tuple.Item7);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

HashCode of Tuple = 49989024
Tuple Item 1st = 1200
Tuple Item 2nd = 1500
Tuple Item 3rd = 2200
Tuple Item 4th = 2700
Tuple Item 5th = 3100
Tuple Item 6th = 3500
Tuple Item 7th = 4500

  1. जावास्क्रिप्ट का उपयोग कर माता-पिता का बाल तत्व कैसे प्राप्त करें?

    जावास्क्रिप्ट का उपयोग करके माता-पिता का चाइल्ड एलिमेंट प्राप्त करने के लिए कोड निम्नलिखित है - उदाहरण <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0&q

  1. टिंकर में निचले-दाएं कोने में रहने के लिए तत्व कैसे प्राप्त करें?

    टिंकर में कई अंतर्निहित विशेषताएं, कार्य और विधियां हैं जिनका उपयोग हम किसी एप्लिकेशन के जीयूआई के निर्माण के लिए कर सकते हैं। यह जानना आवश्यक है कि हम एप्लिकेशन में किसी विशेष विजेट की स्थिति कैसे सेट कर सकते हैं ताकि यह प्रकृति में उत्तरदायी हो जाए। टिंकर ज्यामिति प्रबंधक भी प्रदान करता है जिसके

  1. मैं Tkinter.Listbox में किसी आइटम की अनुक्रमणिका कैसे प्राप्त करूं?

    हम वस्तुओं की सूची बनाने के लिए टिंकर लिस्टबॉक्स विजेट का उपयोग करते हैं। लिस्टबॉक्स में प्रत्येक आइटम में कुछ इंडेक्स होते हैं जो उन्हें क्रमिक रूप से लंबवत क्रम में असाइन किए जाते हैं। मान लीजिए कि हम सूची बॉक्स में किसी क्लिक किए गए आइटम की अनुक्रमणिका प्राप्त करना चाहते हैं। फिर, हमें पहले एक ब