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

ObjectConverter.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad1e3052e6fdc92923b4b7330a7f1e0245ee61ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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]");
		}
	}
}