diff --git a/docs/core/tools/global-tools-how-to-create.md b/docs/core/tools/global-tools-how-to-create.md index 12090ac926460..8cad5f15dc3ca 100644 --- a/docs/core/tools/global-tools-how-to-create.md +++ b/docs/core/tools/global-tools-how-to-create.md @@ -63,7 +63,7 @@ This is the first in a series of three tutorials. In this tutorial, you create a ```csharp using System.Reflection; - namespace TeleprompterConsole; + namespace microsoft.botsay; internal class Program { @@ -74,6 +74,8 @@ This is the first in a series of three tutorials. In this tutorial, you create a } ``` + The `using System.Reflection;` directive is needed by code that you add in the next step. + 1. Replace the `Main` method with the following code to process the command-line arguments for the application. ```csharp