forgot cvs add
[mono.git] / mcs / class / System.Web / System.Web.UI / ObjectConverter.cs
1 //
2 // System.Web.UI.ObjectConverter
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Novell, Inc (http://www.novell.com)
8 //
9
10 namespace System.Web.UI
11 {
12         [Obsolete ("Use the System.Convert class and String.Format instead", false)]
13         public sealed class ObjectConverter
14         {
15                 public static object ConvertValue (object value, Type toType, string formatString)
16                 {
17                         throw new NotImplementedException ("Not implemented and [Obsolete]");
18                 }
19         }
20 }
21