| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.ComponentModel.ComponentConverter
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- namespace System.ComponentModel
- {
- public class ComponentConverter : ReferenceConverter
- {
- [MonoTODO]
- public ComponentConverter (Type type) : base (type)
- {
- }
- [MonoTODO]
- public override PropertyDescriptorCollection GetProperties (ITypeDescriptorContext context,
- object value,
- Attribute[] attributes)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public override bool GetPropertiesSupported (ITypeDescriptorContext context)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- ~ComponentConverter()
- {
- }
- }
- }
|