| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // System.Data.Common.DataColumnMappingConverter.cs
- //
- // Author:
- // Andreas Nahr ([email protected])
- //
- // (C) 2004 Andreas Nahr
- //
- using System;
- using System.Globalization;
- using System.ComponentModel;
- namespace System.Data.Common
- {
- internal sealed class DataColumnMappingConverter : ExpandableObjectConverter
- {
- [MonoTODO]
- public DataColumnMappingConverter ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType)
- {
- throw new NotImplementedException ();
- }
- }
- }
|