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)
16string resultWithNullContext = (string)_converter.ConvertTo(context: null, culture: null, value: null, destinationType: typeof(string)); 17string resultWithNullCulture = (string)_converter.ConvertTo(context: null, culture: null, value: null, destinationType: typeof(string)); 26Action action1 = () => _converter.ConvertTo(context: null, culture: null, value: null, destinationType: null!); 27Action action2 = () => _converter.ConvertTo(context: null, culture: null, value: null, destinationType: typeof(int));