Skip to Main Content
C# in a Nutshell, Second Edition
book

C# in a Nutshell, Second Edition

by Peter Drayton, Ben Albahari, Ted Neward
August 2003
Intermediate to advanced content levelIntermediate to advanced
928 pages
32h 1m
English
O'Reilly Media, Inc.
Content preview from C# in a Nutshell, Second Edition

Name

ArrayList

Synopsis

This class is similar to an array, but it can grow or shrink as needed. The Capacity property returns the maximum number of elements the ArrayList can hold. You can reduce the size by setting Capacity explicitly or using the TrimToSize( ) method. An ArrayList can be constructed empty or with an integer argument that sets its initial size. You can also pass the constructor an object that implements ICollection to fill the ArrayList with the contents of that object.

A number of methods are provided to modify the contents of the ArrayList. The Add( ) and AddRange( ) methods add elements to the end of the list. Insert( ) and InsertRange( ) add new elements at a specified location within the list.

public class ArrayList : IList, ICollection, IEnumerable, ICloneable {
// Public Constructors
   public ArrayList( );
   public ArrayList(ICollection c);
   public ArrayList(int capacity);
// Public Instance Properties
   public virtual int Capacity{set; get; }
   public virtual int Count{get; }       
// implements ICollection
   public virtual bool IsFixedSize{get; }
// implements IList
   public virtual bool IsReadOnly{get; } 
// implements IList
   public virtual bool IsSynchronized{get; } 
// implements ICollection
   public virtual object SyncRoot{get; } 
// implements ICollection
   public virtual object this[object key]{set; get; }
// implements IList
                  // Public Static Methods
   public static ArrayList Adapter(IList list);
   public static ArrayList FixedSize(ArrayList list);
   public static IList FixedSize ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C# in a Nutshell

C# in a Nutshell

Ben Albahari, Ted Neward, Peter Drayton
C# 7.0 in a Nutshell

C# 7.0 in a Nutshell

Joseph Albahari, Ben Albahari
C# Cookbook, 2nd Edition

C# Cookbook, 2nd Edition

Jay Hilyard, Stephen Teilhet
C# Cookbook

C# Cookbook

Joe Mayo

Publisher Resources

ISBN: 0596005261Catalog PageErrata