DekGenius.com
[ Team LiB ] Previous Section Next Section

DecimalConverter

System.ComponentModel (system.dll)class

This class, derived from TypeConverter, transforms between Decimal and other types, for serialization and design-time applications. You would not normally call this class from your own code.

public class DecimalConverter : BaseNumberConverter {
// Public Constructors
   public DecimalConverter();
// Public Instance Methods
   public override bool CanConvertTo(ITypeDescriptorContext context, 
        Type destinationType);  // overrides BaseNumberConverter
   public override object ConvertTo(ITypeDescriptorContext context,
        System.Globalization.CultureInfo culture, object value, Type destinationType);  // overrides BaseNumberConverter
}

Hierarchy

System.Object TypeConverter BaseNumberConverter DecimalConverter

    [ Team LiB ] Previous Section Next Section