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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-12-18 04:24:03 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-12-18 04:24:03 +0300
commitd97ec8556a95645e750ade0655bb4298a8b23006 (patch)
tree95f5f231cb3fe246a22d9ccf664e891e1a493f2e /mcs/class/System.Web/System.Web.UI/ObjectConverter.cs
parent52160c556f4f81026326b9f2c2cfa446c8f83444 (diff)
forgot cvs add
svn path=/trunk/mcs/; revision=21294
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI/ObjectConverter.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI/ObjectConverter.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/ObjectConverter.cs b/mcs/class/System.Web/System.Web.UI/ObjectConverter.cs
new file mode 100644
index 00000000000..ad1e3052e6f
--- /dev/null
+++ b/mcs/class/System.Web/System.Web.UI/ObjectConverter.cs
@@ -0,0 +1,21 @@
+//
+// System.Web.UI.ObjectConverter
+//
+// Authors:
+// Gonzalo Paniagua Javier (gonzalo@ximian.com)
+//
+// (C) 2003 Novell, Inc (http://www.novell.com)
+//
+
+namespace System.Web.UI
+{
+ [Obsolete ("Use the System.Convert class and String.Format instead", false)]
+ public sealed class ObjectConverter
+ {
+ public static object ConvertValue (object value, Type toType, string formatString)
+ {
+ throw new NotImplementedException ("Not implemented and [Obsolete]");
+ }
+ }
+}
+