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

7.0-rc1_System.Xml.Serialization.md « Microsoft.NETCore.App « rc1 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d900495a46ac507e6f4d160ebef229f3fa3dd1e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# System.Xml.Serialization

``` diff
 namespace System.Xml.Serialization {
     public class XmlSerializer {
-        public static XmlSerializer[] FromMappings(XmlMapping[]? mappings);
+        public static XmlSerializer?[] FromMappings(XmlMapping[]? mappings);
-        public static XmlSerializer[] FromMappings(XmlMapping[]? mappings, Type? type);
+        public static XmlSerializer?[] FromMappings(XmlMapping[]? mappings, Type? type);
-        public static XmlSerializer[] FromTypes(Type[]? types);
+        public static XmlSerializer?[] FromTypes(Type[]? types);
     }
 }
```