Skip to content

Commit c24b7a5

Browse files
committed
Add missing using statement; other misc
1 parent 709ae1e commit c24b7a5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/fundamentals/runtime-libraries/snippets/System.Reflection.Emit/PersistedAssemblyBuilder/Overview/csharp/GenerateMetadataSnippets.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
using System;
2+
using System.Collections;
3+
using System.Globalization;
24
using System.IO;
35
using System.Reflection;
46
using System.Reflection.Emit;

docs/fundamentals/runtime-libraries/system-reflection-emit-persistedassemblybuilder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ The following example shows how to create resources and attach it to the assembl
120120

121121
:::code language="csharp" source="./snippets/System.Reflection.Emit/PersistedAssemblyBuilder/Overview/csharp/GenerateMetadataSnippets.cs" id="Snippet2":::
122122

123-
The following example shows how to read resources from the assembly created above.
123+
The following example shows how to read resources from the created assembly.
124124

125125
:::code language="csharp" source="./snippets/System.Reflection.Emit/PersistedAssemblyBuilder/Overview/csharp/GenerateMetadataSnippets.cs" id="Snippet3":::
126126

0 commit comments

Comments
 (0)