Skip to content

Commit d70bb37

Browse files
authored
Explain using for System.Reflection (#34754)
1 parent 07cd2c6 commit d70bb37

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/core/tools/global-tools-how-to-create.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ This is the first in a series of three tutorials. In this tutorial, you create a
6363
```csharp
6464
using System.Reflection;
6565

66-
namespace TeleprompterConsole;
66+
namespace microsoft.botsay;
6767

6868
internal class Program
6969
{
@@ -74,6 +74,8 @@ This is the first in a series of three tutorials. In this tutorial, you create a
7474
}
7575
```
7676

77+
The `using System.Reflection;` directive is needed by code that you add in the next step.
78+
7779
1. Replace the `Main` method with the following code to process the command-line arguments for the application.
7880

7981
```csharp

0 commit comments

Comments
 (0)