|
-
June 25th, 2002, 04:58 PM
#1
ArrayList?
Can anyone explain me What is ArrayList and what for it is used?
Thanks in advance.
-
June 25th, 2002, 07:15 PM
#2
find some ex.
talk with power
-
June 26th, 2002, 02:48 AM
#3
Hi:
It's a class from the System.Collections namespace, intended to be used for holding a list of objects.
Take a look at it, it's very usefull.
VictorL
-
June 26th, 2002, 12:07 PM
#4
It's like an array, except it resizes for you automatically.
I have found the ArrayList and HashTable to be the most useful.
check out the system.collections namespace:
http://www.msdn.microsoft.com/librar...ollections.asp
-
June 26th, 2002, 04:43 PM
#5
Re: ArrayList?
Originally posted by swathi2002
Can anyone explain me What is ArrayList and what for it is used?
Thanks in advance.
An ArrayList is very similar to a Java Vector. It's has the functionality of a resizeable array. You can use instances of it like you were simply using an array except you don't have to worry about the size being right. It will take care of that for you.
Jared
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|