| 1234567891011121314151617181920212223242526272829 |
- //
- // System.Web.UI.Design.DataBindingCollectionConverter
- //
- // Authors:
- // Gert Driesen ([email protected])
- //
- // (C) 2004 Novell
- //
- using System.ComponentModel;
- using System.Globalization;
- namespace System.Web.UI.Design
- {
- public class DataBindingCollectionConverter : TypeConverter
- {
- public DataBindingCollectionConverter ()
- {
- }
- public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
- {
- if (destinationType == typeof(string))
- return string.Empty;
- return base.ConvertTo (context, culture, value, destinationType);
- }
- }
- }
|