Type Summary

						public class ArrayList : IList, ICollection,
                         IEnumerable, ICloneable
 {
   // Constructors
      public ArrayList ();
      public ArrayList (int capacity);
      public ArrayList (ICollection c);

   // Properties
      public virtual int Capacity { set; get; }
      public virtual int Count { get; }
      public virtual bool IsFixedSize { get; }
      public virtual bool IsReadOnly { get; }
      public virtual bool IsSynchronized { get; }
      public virtual object this[int index] { set; get; }
      public virtual object SyncRoot { get; }

   // Methods
   CF
						public static ArrayList Adapter (IList list);
      public virtual int Add (object value);
      public virtual void AddRange (ICollection c);
      public virtual int BinarySearch (int index,
                                       int count,
                                       object value,
                                       IComparer comparer);
   CF
						public virtual int ...

Get .NET Framework Standard Library Annotated Reference, Volume 1: Base Class Library and Extended Numerics Library now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.