Base:
method
ConvertTo
System.ComponentModel.TypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext, System.Globalization.CultureInfo, System.Object, System.Type)
4 references to ConvertTo
System.Windows.Forms.Tests (4)
System\Windows\Forms\FlatButtonAppearanceConverterTests.cs (4)
16
string resultWithNullContext = (string)_converter.
ConvertTo
(context: null, culture: null, value: null, destinationType: typeof(string));
17
string resultWithNullCulture = (string)_converter.
ConvertTo
(context: null, culture: null, value: null, destinationType: typeof(string));
26
Action action1 = () => _converter.
ConvertTo
(context: null, culture: null, value: null, destinationType: null!);
27
Action action2 = () => _converter.
ConvertTo
(context: null, culture: null, value: null, destinationType: typeof(int));