// // System.Data.Common.DataColumnMappingConverter.cs // // Author: // Andreas Nahr (ClassDevelopment@A-SoftTech.com) // // (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 (); } } }