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

7.0-preview5_System.Reflection.Metadata.Ecma335.md « Microsoft.NETCore.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: 12659e0cc7cf2679c5779d5b21431bca2f918c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# System.Reflection.Metadata.Ecma335

``` diff
 namespace System.Reflection.Metadata.Ecma335 {
     public readonly struct BlobEncoder {
+        public FieldTypeEncoder Field();
     }
+    public readonly struct FieldTypeEncoder {
+        public FieldTypeEncoder(BlobBuilder builder);
+        public BlobBuilder Builder { get; }
+        public CustomModifiersEncoder CustomModifiers();
+        public SignatureTypeEncoder Type(bool isByRef = false);
+        public void TypedReference();
+    }
 }
```