| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // System.Data.OleDb.OleDbParameterConverter.cs
- //
- // Author:
- // Umadevi S ([email protected])
- //
- // Copyright (C) Novell Inc, 2004
- //
- using System;
- using System.ComponentModel;
- using System.Globalization;
- namespace System.Data.OleDb {
- internal sealed class OleDbParameterConverter : ExpandableObjectConverter
- {
- #region Constructors
- [MonoTODO]
- public OleDbParameterConverter ()
- {
- 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
- }
- }
|