Skip to content

correctly refer to "using directives" #4169

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you want to obtain a service without blocking the UI thread, you should creat

5. The following example shows a very basic implementation of the three types. The constructor of the service class must set the service provider. In this example we'll just add the service to the package code file.

6. Add the following using statements to the package file:
6. Add the following using directives to the package file:

```csharp
using System.Threading;
Expand Down Expand Up @@ -197,7 +197,7 @@ public sealed class TestAsyncPackage : AsyncPackage

4. In the *TestAsyncCommand.cs* file, find the `MenuItemCallback()` method. Delete the body of the method.

5. Add a using statement:
5. Add a using directive:

```csharp
using System.IO;
Expand Down