Count the number of elements in the BitArray class using the Count property.
Let us first set our BitArray class −
BitArray arr = new BitArray(10);
Now use the Count property as shown below −
Example
using System;
using System.Collections;
public class Demo {
public static void Main() {
BitArray arr = new BitArray(10);
Console.WriteLine( "Count: {0}", arr.Count );
}
}Output
Count: 10