File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
articles/cognitive-services/language-service/sentiment-opinion-mining/includes/quickstarts Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ manager: nitinme
4
4
ms.service : cognitive-services
5
5
ms.subservice : language-service
6
6
ms.topic : include
7
- ms.date : 11/02/2021
7
+ ms.date : 03/08/2022
8
8
ms.author : aahi
9
9
ms.custom : ignite-fall-2021
10
10
---
@@ -39,6 +39,7 @@ Copy the following code into your *program.cs* file. Remember to replace the `ke
39
39
using Azure ;
40
40
using System ;
41
41
using Azure .AI .TextAnalytics ;
42
+ using System .Collections .Generic ;
42
43
43
44
namespace Example
44
45
{
@@ -111,7 +112,7 @@ namespace Example
111
112
static void Main (string [] args )
112
113
{
113
114
var client = new TextAnalyticsClient (endpoint , credentials );
114
- SentimentAnalysisExample (client )
115
+ SentimentAnalysisExample (client );
115
116
SentimentAnalysisWithOpinionMiningExample (client );
116
117
117
118
Console .Write (" Press any key to exit." );
You can’t perform that action at this time.
0 commit comments