Skip to content

Commit 0832506

Browse files
authored
Merge pull request #190993 from aahill/patch-91
Update csharp-sdk.md
2 parents 8d3cd34 + 33575d5 commit 0832506

File tree

1 file changed

+3
-2
lines changed
  • articles/cognitive-services/language-service/sentiment-opinion-mining/includes/quickstarts

1 file changed

+3
-2
lines changed

articles/cognitive-services/language-service/sentiment-opinion-mining/includes/quickstarts/csharp-sdk.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ manager: nitinme
44
ms.service: cognitive-services
55
ms.subservice: language-service
66
ms.topic: include
7-
ms.date: 11/02/2021
7+
ms.date: 03/08/2022
88
ms.author: aahi
99
ms.custom: ignite-fall-2021
1010
---
@@ -39,6 +39,7 @@ Copy the following code into your *program.cs* file. Remember to replace the `ke
3939
using Azure;
4040
using System;
4141
using Azure.AI.TextAnalytics;
42+
using System.Collections.Generic;
4243

4344
namespace Example
4445
{
@@ -111,7 +112,7 @@ namespace Example
111112
static void Main(string[] args)
112113
{
113114
var client = new TextAnalyticsClient(endpoint, credentials);
114-
SentimentAnalysisExample(client)
115+
SentimentAnalysisExample(client);
115116
SentimentAnalysisWithOpinionMiningExample(client);
116117

117118
Console.Write("Press any key to exit.");

0 commit comments

Comments
 (0)