101 LINQ Samples: Conversion Operators

ToArray

This sample uses ToArray to immediately evaluate a sequence into an array.

public void Linq54(){    double[] doubles = { 1.72.31.94.12.9 };     var sortedDoubles =        from d in doubles        orderby d descending        select d;    var doublesArray = sortedDoubles.ToArray();     Console.WriteLine("Every other double from highest to lowest:");    for (int d = 0; d < doublesArray.Length; d += 2)    {        Console.WriteLine(doublesArray[d]);    }}

Result

Every other double from highest to lowest:
4.1
2.3
1.7

ToList

This sample uses ToList to immediately evaluate a sequence into a List<T>.

public void Linq55(){    string[] words = { "cherry""apple""blueberry" };     var sortedWords =        from w in words        orderby w        select w;    var wordList = sortedWords.ToList();     Console.WriteLine("The sorted word list:");    foreach (var w in wordList)    {        Console.WriteLine(w);    }}

Result

The sorted word list:
apple
blueberry
cherry

ToDictionary

This sample uses ToDictionary to immediately evaluate a sequence and a related key expression into a dictionary.

public void Linq56(){    var scoreRecords = new[] { new {Name = "Alice", Score = 50},                                new {Name = "Bob"  , Score = 40},                                new {Name = "Cathy", Score = 45}                            };     var scoreRecordsDict = scoreRecords.ToDictionary(sr => sr.Name);     Console.WriteLine("Bob's score: {0}", scoreRecordsDict["Bob"]);}

Result

Bob's score: { Name = Bob, Score = 40 }

OfType

This sample uses OfType to return only the elements of the array that are of type double.

public void Linq57(){    object[] numbers = { null1.0"two"3"four"5"six"7.0 };     var doubles = numbers.OfType<double>();     Console.WriteLine("Numbers stored as doubles:");    foreach (var d in doubles)    {        Console.WriteLine(d);    }}

Result

Numbers stored as doubles:
1
7

转载于:https://www.cnblogs.com/zjz008/archive/2011/03/13/1982919.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值