Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.ComponentModel/StringConverter.cs')
-rw-r--r--mcs/class/System/System.ComponentModel/StringConverter.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/mcs/class/System/System.ComponentModel/StringConverter.cs b/mcs/class/System/System.ComponentModel/StringConverter.cs
deleted file mode 100644
index 4e4bdb9bf4b..00000000000
--- a/mcs/class/System/System.ComponentModel/StringConverter.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// System.ComponentModel.StringConverter
-//
-// Authors:
-// Gonzalo Paniagua Javier (gonzalo@ximian.com)
-//
-// (C) 2002 Ximian, Inc (http://www.ximian.com)
-//
-
-using System;
-using System.Globalization;
-
-namespace System.ComponentModel {
-
-public class StringConverter : TypeConverter
-{
- public StringConverter ()
- {
- }
-
- [MonoTODO]
- public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public override object ConvertFrom (ITypeDescriptorContext context, CultureInfo culture, object value)
- {
- throw new NotImplementedException ();
- }
-}
-}
-