(ITypeDescriptorContext context, Type destinationType)
| 256 | return ((sourceType == typeof(string)) || base.CanConvertFrom(context, sourceType)); |
| 257 | } |
| 258 | public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) |
| 259 | { |
| 260 | return ((destinationType == typeof(RectangleF)) || base.CanConvertTo(context, destinationType)); |
| 261 | } |
| 262 | public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) |
| 263 | { |
| 264 | if (culture == null) |
nothing calls this directly
no test coverage detected