| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.ComponentModel.ExpandableObjectConverter.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System;
- namespace System.ComponentModel {
- public class ExpandableObjectConverter : TypeConverter {
- #region Constructors
- [MonoTODO]
- public ExpandableObjectConverter ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public override PropertyDescriptorCollection GetProperties (ITypeDescriptorContext context,
- object value, Attribute[] attributes)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override bool GetPropertiesSupported (ITypeDescriptorContext context)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|