BitArray.Length : BitArray « System.Collections « C# / C Sharp by API






BitArray.Length

 


using System;
using System.Collections;

public class Example11_4
{

  public static void Main()
  {

    BitArray myBitArray = new BitArray(4);

    Console.WriteLine("myBitArray.Length = " +
      myBitArray.Length);

    myBitArray[0] = false;
    myBitArray[1] = true;
    myBitArray[2] = true;
    myBitArray[3] = false;

    for (int counter = 0; counter < myBitArray.Count; counter++)
    {
      Console.WriteLine("myBitArray[" + counter + "] = " +
        myBitArray[counter]);
    }

  }

}

   
  








Related examples in the same category

1.new BitArray(byte[] b)
2.new BitArray(int size)
3.BitArray.Not()
4.BitArray.Or
5.BitArray.Xor