StringCollection

StringCollection serializable

System.Collections.Specialized (system.dll) class

This class is a special collection in which the elements are strings.

 public class  StringCollection  : IList, ICollection, IEnumerable {  // Public Constructors  public  StringCollection  ( );  // Public Instance Properties  public int  Count  {get; }  // implements ICollection  public bool  IsReadOnly  {get; }  // implements IList  public bool  IsSynchronized  {get; }  // implements ICollection  public object  SyncRoot  {get; }  // implements ICollection  public string  this  [int   index   ]{set; get; }  // Public Instance Methods  public int  Add  (string   value   );    public void  AddRange  (string[ ]   value   );    public void  Clear  ( );  // implements IList  public bool  Contains  (string   value   );    public void  CopyTo  (string[ ]   array   , int   index   );    public StringEnumerator  GetEnumerator  ( );    public int  IndexOf  (string   value   );    public void  Insert  (int   index   , string   value   );    public void  Remove  (string   value   );    public void  RemoveAt  (int   index   );  // implements IList  } 


C# in a Nutshell
C # in a Nutshell, Second Edition
ISBN: 0596005261
EAN: 2147483647
Year: 2005
Pages: 963

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net