Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-preview5_System.Windows.Forms.Layout.md « Microsoft.WindowsDesktop.App « preview5 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac317ca9791e7ea68d2abc8f61fc32a2efd94a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# System.Windows.Forms.Layout

``` diff
 namespace System.Windows.Forms.Layout {
     public class TableLayoutSettingsTypeConverter : TypeConverter {
-        public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType);
+        public override bool CanConvertFrom(ITypeDescriptorContext? context, Type sourceType);
-        public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType);
+        public override bool CanConvertTo(ITypeDescriptorContext? context, Type? destinationType);
-        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value);
+        public override object? ConvertFrom(ITypeDescriptorContext? context, CultureInfo? culture, object value);
-        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType);
+        public override object? ConvertTo(ITypeDescriptorContext? context, CultureInfo? culture, object? value, Type destinationType);
     }
 }
```