Converts a string that represent a list of ints to an observable collection of ints. The integers in the string must be separated with a comma, for example "10, 20, 50".
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class IntCollectionConverter : TypeConverter
Inheritance: objectTypeConverterIntCollectionConverter
Inherited Members
Constructors
C#
public IntCollectionConverter()
Methods
C#
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
Overrides:
C#
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
Overrides:
C#
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
Overrides:
C#
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
Overrides: