forked from dotnet/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelect-Sample-4.cs
47 lines (42 loc) · 1.57 KB
/
Select-Sample-4.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using System.Linq;
using System;
namespace Projection
{
public class SelectSample4
{
//This sample uses select and query syntax to produce a sequence of the uppercase and lowercase versions
//of each word in the original array.
//
//Outputs:
// Uppercase: APPLE, Lowercase: apple
// Uppercase: BLUEBERRY, Lowercase: blueberry
// Uppercase: CHERRY, Lowercase: cherry
public static void QuerySyntaxExample()
{
string[] words = { "aPPLE", "BlUeBeRrY", "cHeRry" };
var upperLowerWords =
from w in words
select new { Upper = w.ToUpper(), Lower = w.ToLower() };
foreach (var ul in upperLowerWords)
{
Console.WriteLine($"Uppercase: {ul.Upper}, Lowercase: {ul.Lower}");
}
}
//This sample uses select and method syntax to produce a sequence of the uppercase and lowercase versions
//of each word in the original array.
//
//Outputs:
// Uppercase: APPLE, Lowercase: apple
// Uppercase: BLUEBERRY, Lowercase: blueberry
// Uppercase: CHERRY, Lowercase: cherry
public static void MethodSyntaxExample()
{
string[] words = { "aPPLE", "BlUeBeRrY", "cHeRry" };
var upperLowerWords = words.Select(w => new {Upper = w.ToUpper(), Lower = w.ToLower()});
foreach (var ul in upperLowerWords)
{
Console.WriteLine($"Uppercase: {ul.Upper}, Lowercase: {ul.Lower}");
}
}
}
}