public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object valueObject)
 {
     return(new Wrapper.Points(PointsConverter.ConvertFromString(GetValueAsString(valueObject))));
 }
Esempio n. 2
0
 public override object ConvertFromInvariantString(string value)
 {
     return(new Wrapper.Points(PointsConverter.ConvertFromString(value)));
 }