| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // 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
- }
- }
|