// // System.Data.SqlClient.SqlParameterConverter.cs // // Author: // Tim Coleman (tim@timcoleman.com) // // Copyright (C) Tim Coleman, 2002 // using System; using System.ComponentModel; using System.Globalization; namespace System.Data.SqlClient { internal sealed class SqlParameterConverter : ExpandableObjectConverter { #region Constructors [MonoTODO] public SqlParameterConverter () { throw new NotImplementedException (); } #endregion // Constructors #region Methods [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 (); } #endregion // Methods } }