// // System.Data.ColumnTypeConverter.cs // // Author: // Andreas Nahr (ClassDevelopment@A-SoftTech.com) // // (C) 2004 Andreas Nahr // using System; using System.Globalization; using System.ComponentModel; namespace System.Data { internal sealed class ColumnTypeConverter : ExpandableObjectConverter { [MonoTODO] public ColumnTypeConverter () { 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 (); } } }