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

सी # में बिटअरे में निहित तत्वों की संख्या?

बिटअरे में निहित तत्वों की संख्या प्राप्त करने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      BitArray arr1 = new BitArray(5);
      BitArray arr2 = new BitArray(5);
      arr1[0] = false;
      arr1[1] = false;
      arr2[0] = false;
      arr2[1] = true;
      Console.WriteLine("BitArray1 elements...");
      foreach (bool res in arr1) {
         Console.WriteLine(res);
      }
      Console.WriteLine("\nBitArray2 elements...");
      foreach (bool res in arr2) {
         Console.WriteLine(res);
      }
      Console.WriteLine("\nBitwise OR operation...");
      IEnumerable demoEnum = arr1.Or(arr2);
      foreach(Object ob in demoEnum) {
         Console.WriteLine(ob);
      }
      Console.WriteLine("\nNumber of elements in the resultant BitArray = "+arr1.Count);
   }
}

आउटपुट

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

BitArray1 elements...
False
False
False
False
False
BitArray2 elements...
False
True
False
False
False
Bitwise OR operation...
False
True
False
False
False
Number of elements in the resultany BitArray = 5

उदाहरण

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

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      BitArray arr = new BitArray(2);
      arr[0] = false;
      arr[1] = true;
      Console.WriteLine("Elements in BitArray...");
      foreach (bool res in arr) {
         Console.WriteLine(res);
      }
      Console.WriteLine("\nNumber of elements in the BitArray = "+arr.Count);
      bool[] boolArr = new bool[2];
      boolArr[0] = true;
      boolArr[1] = false;
      arr.CopyTo(boolArr, 0);
      Console.WriteLine("\nArray...");
      foreach(Object obj in boolArr) {
         Console.WriteLine(obj);
      }
   }
}

आउटपुट

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

Elements in BitArray...
False
True

Number of elements in the BitArray = 2
Array...
False
True

  1. सी # में ArrayList में वास्तव में निहित तत्वों की संख्या प्राप्त करें

    ArrayList में वास्तव में निहित तत्वों की संख्या प्राप्त करने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; public class Demo {    public static void Main(String[] args){       ArrayList list1 = new ArrayList();       list1.Add("

  1. सी # में ListDictionary में निहित कुंजी/मूल्य जोड़े की संख्या प्राप्त करें

    ListDictionary में निहित कुंजी/मान जोड़े की संख्या प्राप्त करने के लिए, कोड इस प्रकार है- उदाहरण using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       ListDictionary dict1 = new ListDictionary();

  1. सी # एक अनुक्रम की शुरुआत से तत्वों की निर्दिष्ट संख्या वापस करने के लिए कार्यक्रम

    एक सरणी सेट करें और इसे OrderByDescending का उपयोग करके अवरोही क्रम में व्यवस्थित करें। int[] prod = { 290, 340, 129, 540, 456, 898, 765, 789, 345}; अब, शुरुआत से निर्दिष्ट संख्या में तत्वों को वापस करने के लिए Take() विधि का उपयोग करें। Enumerable<int> units = prod.AsQueryable().OrderByDesce