StringConverter.cs 634 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // System.ComponentModel.StringConverter
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. using System.Globalization;
  11. namespace System.ComponentModel {
  12. public class StringConverter : TypeConverter
  13. {
  14. public StringConverter ()
  15. {
  16. }
  17. [MonoTODO]
  18. public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. public override object ConvertFrom (ITypeDescriptorContext context, CultureInfo culture, object value)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. }
  28. }