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 73ee782 commit b199566Copy full SHA for b199566
docs/csharp/linq/standard-query-operators/snippets/standard-query-operators/SelectProjectionExamples.cs
@@ -90,7 +90,7 @@ private static void SelectManyMethodSyntax()
90
// <SelectManyMethod>
91
List<string> phrases = ["an apple a day", "the quick brown fox"];
92
93
- var query = phrases.SelectMany(phrases => phrases.Split(' '));
+ var query = phrases.SelectMany(phrase => phrase.Split(' '));
94
95
foreach (string s in query)
96
{
0 commit comments