Skip to content

Commit 34c58fa

Browse files
authored
Revert "don't confuse using directives and statements"
1 parent b9d0564 commit 34c58fa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

powerapps-docs/developer/common-data-service/webapi/enhanced-quick-start.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Enabling this requires three steps:
3535

3636
1. [Add Reference to System.Configuration to the Visual Studio project](#add-reference-to-systemconfiguration-to-the-visual-studio-project)
3737
1. [Edit the application configuration file](#edit-the-application-configuration-file)
38-
1. [Add using directive to Program.cs](#add-using-directive-to-programcs)
38+
1. [Add using statement to Program.cs](#add-using-statement-to-programcs)
3939

4040

4141
### Add Reference to System.Configuration to the Visual Studio project
@@ -76,9 +76,9 @@ This creates a connection string that can be referenced by name, in this case `C
7676
7777
Edit the connection string `Url`, `Username` and `Password` values in the `connectionString` to match what you need to connect to your Common Data Service environment.
7878
79-
### Add using directive to Program.cs
79+
### Add using statement to Program.cs
8080
81-
At the top of your Program.cs file, add this using directive:
81+
At the top of your Program.cs file, add this using statement:
8282
8383
```csharp
8484
using System.Configuration;
@@ -96,7 +96,7 @@ These helpers are also used in the [SampleHelper.cs](https://github.com/Microsof
9696
> [!NOTE]
9797
> The name of the class will determine how you will reference these helper properties and methods within your `Program.cs`. The remaining instructions will expect you named it `SampleHelpers`, so remember if you named it something else.
9898
99-
1. Add the following `using` directives:
99+
1. Add the following `using` statements:
100100
101101
```csharp
102102
using Microsoft.IdentityModel.Clients.ActiveDirectory;
@@ -343,7 +343,7 @@ In your Visual Studio project perform the following steps:
343343
344344
In this way the `Program` class in `ProgramMethods.cs` file is just an extension of the original `Program` class in the `Program.cs` file.
345345
346-
1. Add the following using directives to the top of the `ProgramMethods.cs` file.
346+
1. Add the following using statements to the top of the `ProgramMethods.cs` file.
347347
348348
```csharp
349349
using Newtonsoft.Json.Linq;

0 commit comments

Comments
 (0)