文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>泛型中的指定类型查找实例

泛型中的指定类型查找实例

时间:2011-04-19  来源:寻得乐中乐

泛型用起来确实方便,如下程序将在ArrayList中寻找指定的类型

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;

namespace LINQ查询操作
{
    class Program
    {
        static void Main(string[] args)
        {
            寻找指定类型<bool>();
            寻找指定类型<int>();
            寻找指定类型<string>();
            Console.ReadLine();

        }

        private static void 寻找指定类型<T>()
        {
            ArrayList randomList = new ArrayList();
            randomList.Add(1);
            randomList.Add(2);
            randomList.Add(3);
            randomList.Add(4);
            randomList.Add(5);
            randomList.Add("one");
            randomList.Add("two");
            randomList.Add("three");
            randomList.Add("four");
            randomList.Add("five");
            randomList.Add(true);
            randomList.Add(false);
            randomList.Add(true);

            var query = randomList.OfType<T>();
            foreach (var item in query)
            {
                Console.WriteLine(item);
            }
        }
    }
}

结果如下:

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载