| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // 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 ();
- }
- }
- }
|