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

जांचें कि क्या दो स्ट्रिंगकोलेक्शन ऑब्जेक्ट्स सी # में बराबर हैं

यह जाँचने के लिए कि क्या दो StringCollection ऑब्जेक्ट समान हैं, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection strCol1 = new StringCollection();
      strCol1.Add("Accessories");
      strCol1.Add("Books");
      strCol1.Add("Electronics");
      Console.WriteLine("StringCollection1 elements...");
      foreach (string res in strCol1) {
         Console.WriteLine(res);
      }
      StringCollection strCol2 = new StringCollection();
      strCol2.Add("Accessories");
      strCol2.Add("Books");
      strCol2.Add("Electronics");
      Console.WriteLine("StringCollection2 elements...");
      foreach (string res in strCol1) {
         Console.WriteLine(res);
      }
      Console.WriteLine("Both the String Collections are equal? = "+strCol1.Equals(strCol2));
   }
}

आउटपुट

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

StringCollection1 elements...
Accessories
Books
Electronics
StringCollection2 elements...
Accessories
Books
Electronics
Both the String Collections are equal? = False

उदाहरण

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection strCol1 = new StringCollection();
      strCol1.Add("Accessories");
      strCol1.Add("Books");
      strCol1.Add("Electronics");
      Console.WriteLine("StringCollection1 elements...");
      foreach (string res in strCol1) {
         Console.WriteLine(res);
      }
      StringCollection strCol2 = new StringCollection();
      strCol2.Add("Accessories");
      strCol2.Add("Books");
      strCol2.Add("Electronics");
      Console.WriteLine("StringCollection2 elements...");
      foreach (string res in strCol1) {
         Console.WriteLine(res);
      }
      Console.WriteLine("Both the String Collections are equal? = "+strCol1.Equals(strCol2));
      StringCollection strCol3 = new StringCollection();
      strCol3 = strCol2;
      Console.WriteLine("Is StringCollection3 equal to StringCollection2? = "+strCol3.Equals(strCol2));
   }
}

आउटपुट

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

StringCollection1 elements...
Accessories
Books
Electronics
StringCollection2 elements...
Accessories
Books
Electronics
Both the String Collections are equal? = False
Is StringCollection3 equal to StringCollection2? = True

  1. पायथन पांडा - निर्धारित करें कि क्या दो इंडेक्स ऑब्जेक्ट बराबर हैं

    यह निर्धारित करने के लिए कि क्या दो इंडेक्स ऑब्जेक्ट बराबर हैं, बराबर () . का उपयोग करें विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd अनुक्रमणिका1 और अनुक्रमणिका2 बनाना - index1 = pd.Index([15, 25, 55, 10, 100, 70, 35, 40, 55]) index2 = pd.Index([15, 25, 55, 10, 100, 70,

  1. पायथन - जांचें कि क्या विभाजन बराबर हैं

    जब यह जांचने की आवश्यकता होती है कि क्या एक स्ट्रिंग में विभाजन समान हैं, तो लेन विधि, सूची विधि और सेट ऑपरेटर का उपयोग if स्थिति के साथ किया जाता है। उदाहरण नीचे उसी का एक प्रदर्शन है - my_string = '96%96%96%96%96%96' print("The string is : " ) print(my_string) my_split_char =

  1. पायथन पांडा - जांचें कि डेटाफ्रेम ऑब्जेक्ट बराबर हैं या नहीं

    यह जाँचने के लिए कि क्या डेटाफ़्रेम ऑब्जेक्ट समान हैं, बराबर () विधि का उपयोग करें। सबसे पहले, दो कॉलम के साथ DataFrame1 बनाएं - dataFrame1 = pd.DataFrame(    {       "Car": ['BMW', 'Lexus', 'Audi', 'Mustang', 'Bentley', '