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

7.0-rc1_System.Reflection.Emit.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: a7b427129da4947f589a2854acbadecdc326d20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# System.Reflection.Emit

``` diff
 namespace System.Reflection.Emit {
     public sealed class EnumBuilder : TypeInfo {
-        public Type? CreateType();
+        public Type CreateType();
-        public TypeInfo? CreateTypeInfo();
+        public TypeInfo CreateTypeInfo();
     }
     public sealed class TypeBuilder : TypeInfo {
-        public Type? CreateType();
+        public Type CreateType();
-        public TypeInfo? CreateTypeInfo();
+        public TypeInfo CreateTypeInfo();
     }
 }
```