2
Answers

Size of BitArray

Yesterday i was reading the topic of Collection in c# language and i faced a problem that.
In some  Collections like HashTable ,ArrayList ,Dictionary we are not necessary to define the size of Collection like:
 ArrayList list = new ArrayList(6);  //No error
Hashtable obj = new Hashtable(6);    //No error
ArrayList list = new ArrayList();       //No error
Hashtable obj = new Hashtable();    //No error
but in BitArray we can not declare a BitArray without  initialize it's size
BitArray obl = new BitArray(6);        //No error
BitArray obl = new BitArray();  //  It will show an error
why????????
Answers (2)