We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a908b6 commit 490ef49Copy full SHA for 490ef49
samples/TextAnalytics/synchronous/Program.cs
@@ -50,7 +50,7 @@ static void Main(string[] args)
50
{
51
var client = authenticateClient();
52
53
- SentimentAnalysisExample(client);
+ sentimentAnalysisExample(client);
54
languageDetectionExample(client);
55
entityRecognitionExample(client);
56
keyPhraseExtractionExample(client);
@@ -60,7 +60,7 @@ static void Main(string[] args)
60
// </main>
61
62
// <sentiment>
63
- static void SentimentAnalysisExample(ITextAnalyticsClient client)
+ static void sentimentAnalysisExample(ITextAnalyticsClient client)
64
65
var result = client.Sentiment("I had the best day of my life.", "en");
66
Console.WriteLine($"Sentiment Score: {result.Score:0.00}");
0 commit comments