Monday 2 April 2012

WAT IS ARRAYLIST IN C#? EXAMPLE TO IMPLEMENT ARRAYLIST


Array list is just simply a collection of object. you can use array list by making an object of it. ArrayList Al=new ArrayList(); for(int i=0;i<10;i++) { A1.add(i); } 

No comments:

Post a Comment