// System.Drawing.Design.CategoryNameCollection.cs // // Author: // Alejandro Sánchez Acosta // // (C) Alejandro Sánchez Acosta // using System.Collections; namespace System.Drawing.Design { public sealed class CategoryNameCollection : ReadOnlyCollectionBase { private int index; [MonoTODO] public CategoryNameCollection (CategoryNameCollection value) { throw new NotImplementedException (); } [MonoTODO] public CategoryNameCollection(string[] value) { throw new NotImplementedException (); } [MonoTODO] public string this[int index] { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public bool Contains (string value) { throw new NotImplementedException (); } [MonoTODO] public void CopyTo (string[] array, int index) { throw new NotImplementedException (); } [MonoTODO] public int IndexOf (string value) { throw new NotImplementedException (); } } }