Click or drag to resize

StringToIntArrayTypeConverter Class

A converter converts from String to Array of Int32
Inheritance Hierarchy
SystemObject
  System.ComponentModelTypeConverter
    Hummingbird.UI.ConvertersStringToIntArrayTypeConverter

Namespace:  Hummingbird.UI.Converters
Assembly:  Hummingbird.UI (in Hummingbird.UI.dll) Version: 1.1.0.0
Syntax
public class StringToIntArrayTypeConverter : TypeConverter

The StringToIntArrayTypeConverter type exposes the following members.

Constructors
  NameDescription
Public methodStringToIntArrayTypeConverter
Initializes a new instance of the StringToIntArrayTypeConverter class
Top
Methods
  NameDescription
Public methodCanConvertFrom
Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.
(Overrides TypeConverterCanConvertFrom(ITypeDescriptorContext, Type).)
Public methodConvertFrom
Converts the given object to the type of this converter, using the specified context and culture information.
(Overrides TypeConverterConvertFrom(ITypeDescriptorContext, CultureInfo, Object).)
Public methodConvertTo
Converts the given value object to the specified type, using the specified context and culture information.
(Overrides TypeConverterConvertTo(ITypeDescriptorContext, CultureInfo, Object, Type).)
Top
Remarks
The input string must in form of integer numbers separated by comma (,)
See Also