码迷,mamicode.com
首页 > 其他好文 > 详细

LinQ转换运算符OfType<T>

时间:2014-07-14 08:51:20      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:blog   for   cti   io   div   line   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OfTypeDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            var numbers = new object[] { 1, "two", null, "3", 4 };
            foreach (var anInt in numbers.OfType<int>())
                Console.WriteLine(anInt);
            Console.ReadLine();
        }
    }
}

 

LinQ转换运算符OfType<T>,布布扣,bubuko.com

LinQ转换运算符OfType<T>

标签:blog   for   cti   io   div   line   

原文地址:http://www.cnblogs.com/swtool/p/3840037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!