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

जांचें कि क्या बिटअरे केवल सी # में पढ़ा जाता है

यह जांचने के लिए कि क्या बिटअरे केवल पढ़ने के लिए है, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      BitArray arr1 = new BitArray(2);
      BitArray arr2 = new BitArray(2);
      arr1[0] = false;
      arr1[1] = true;
      Console.WriteLine("Elements in BitArray1...");
      foreach (bool res in arr1) {
         Console.WriteLine(res);
      }
      arr2[0] = false;
      arr2[1] = true;
      Console.WriteLine("Elements in BitArray2...");
      foreach (bool res in arr2) {
         Console.WriteLine(res);
      }
      Console.WriteLine("Is BitArray1 equal to BitArray2? = "+arr2.Equals(arr1));
      Console.WriteLine("Is BitArray synchronized? = "+arr2.IsSynchronized);
      Console.WriteLine("Is BitArray read-only? = "+arr2.IsReadOnly);
   }
}

आउटपुट

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

Elements in BitArray1...
False
True
Elements in BitArray2...
False
True
Is BitArray1 equal to BitArray2? = False
Is BitArray synchronized? = False
Is BitArray read-only? = False

उदाहरण

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

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      BitArray arr1 = new BitArray(2);
      BitArray arr2 = new BitArray(2);
      arr1[0] = false;
      arr1[1] = true;
      Console.WriteLine("Elements in BitArray1...");
      foreach (bool res in arr1) {
         Console.WriteLine(res);
      }
      Console.WriteLine("Is BitArray1 read-only? = "+arr1.IsReadOnly);
      arr2[0] = true;
      arr2[1] = false;
      Console.WriteLine("Elements in BitArray2...");
      foreach (bool res in arr2) {
         Console.WriteLine(res);
      }
      Console.WriteLine("Is BitArray1 equal to BitArray2? = "+arr2.Equals(arr1));
      Console.WriteLine("Is BitArray2 read-only? = "+arr2.IsReadOnly);
   }
}

आउटपुट

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

Elements in BitArray1...
False
True
Is BitArray1 read-only? = False
Elements in BitArray2...
True
False
Is BitArray1 equal to BitArray2? = False
Is BitArray2 read-only? = False

  1. जांचें कि कोई तत्व सी # में संग्रह में है या नहीं

    यह जांचने के लिए कि कोई तत्व संग्रह में है या नहीं, कोड इस प्रकार है - उदाहरण using System; using System.Collections.ObjectModel; public class Demo {    public static void Main(){       Collection<int> col = new Collection<int>();       col.Add(10)

  1. जांचें कि कोई सरणी केवल पढ़ने के लिए है या नहीं सी #

    यह जांचने के लिए कि कोई सरणी केवल पढ़ने के लिए है या नहीं, नीचे दिए गए कोड को आजमाएं - उदाहरण using System; public class Demo {    public static void Main(){       string[] products = new string[] { };       Console.WriteLine("One or more planets begin wi

  1. सी # में बिटअरे क्लास क्या है?

    बिटअरे क्लास का उपयोग तब किया जाता है जब आपको बिट्स को स्टोर करने की आवश्यकता होती है लेकिन बिट्स की संख्या पहले से नहीं पता होती है। C# में BitArray वर्ग के कुछ गुण निम्नलिखित हैं - क्रमांक संपत्ति और विवरण 1 गिनें BitArray में निहित तत्वों की संख्या प्राप्त करें। 2 केवल पढ़ने के लिए है