Skip to content

Commit 1874ab8

Browse files
Merge pull request #267448 from jonburchel/patch-39
Merges public PR 120240
2 parents 1cf5c6e + aa6d5ce commit 1874ab8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/data-factory/quickstart-create-data-factory-dot-net.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Next, create a C# .NET console application in Visual Studio:
8585
string region = "<the location of your resource group>";
8686
string dataFactoryName =
8787
"<specify the name of data factory to create. It must be globally unique.>";
88-
string storageAccount = "<your storage account name to copy data>";
88+
string storageAccountName = "<your storage account name to copy data>";
8989
string storageKey = "<your storage account key>";
9090
// specify the container and input folder from which all files
9191
// need to be copied to the output folder.
@@ -137,7 +137,7 @@ You create linked services in a data factory to link your data stores and comput
137137
138138
```csharp
139139
// Create an Azure Storage linked service
140-
CConsole.WriteLine("Create a linked service " + storageLinkedServiceName + "...");
140+
Console.WriteLine("Create a linked service " + storageLinkedServiceName + "...");
141141
AzureBlobStorageLinkedService azureBlobStorage = new AzureBlobStorageLinkedService()
142142
{
143143
ConnectionString = azureBlobStorageConnectionString

0 commit comments

Comments
 (0)