// // System.Windows.Forms.GridItemCollection.cs // // Author: // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu) // Dennis Hayes (dennish@Raytek.com) // // (C) 2002/3 Ximian, Inc // using System.Collections; namespace System.Windows.Forms { // // public abstract class GridItemCollection : ICollection, IEnumerable { private GridItemCollection() { //just for signture compatablity } public static GridItemCollection Empty; // // --- Public Properties // [MonoTODO] public virtual int Count { get { throw new NotImplementedException (); } } [MonoTODO] public GridItem this[string str] { get { throw new NotImplementedException (); } } // // --- Public Methods // [MonoTODO] public IEnumerator GetEnumerator() { throw new NotImplementedException (); } /// /// ICollection Interface implmentation. /// int ICollection.Count{ get{ throw new NotImplementedException (); } } bool ICollection.IsSynchronized{ get{ throw new NotImplementedException (); } } object ICollection.SyncRoot{ get{ throw new NotImplementedException (); } } void ICollection.CopyTo(Array array, int index){ throw new NotImplementedException (); } // End Of ICollection } }