博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#如何把List of Object转换成List of T具体类型
阅读量:5035 次
发布时间:2019-06-12

本文共 1350 字,大约阅读时间需要 4 分钟。

上周码程序的时候碰到个问题,因为设计上的约束,一个方法接受的参数只能为List<object>类型,然而该方法需要处理的真实数据则是确定的List<Currency>。然而C#不允许显示的直接转换类型,并且两个方向上都不可以操作。这个问题让我爆了一会儿,最后在MSDN上找到了一个OfType<T>的拓展方法可以完成这件事。

using System;using System.Collections.Generic;using System.Linq;namespace ConsoleApplication1{    internal class Program    {        private static void Main(string[] args)        {            List currencyListOfType = new List()            {                new Currency(){Id = Guid.NewGuid(), Name = "a"},                new Currency(){Id = Guid.NewGuid(), Name = "b"},                new Currency(){Id = Guid.NewGuid(), Name = "c"}            };            List currencyListCast = new List()            {                "a", "b", "c"            };            //=>OfType如果元素存在转换不了,也不会出现异常;只转换成功的元素;如果转换不了currencies则为空的List,而不是NULL            List
currencies = currencyListOfType.OfType
().ToList(); //=>Cast如果元素转换不了,则会失败。 List
currencies1 = currencyListCast.Cast
().ToList(); Console.WriteLine("currencies list:"); foreach (var item in currencies) { Console.WriteLine(item.Id); } Console.WriteLine("currencies1 list:"); foreach (var item in currencies1) { Console.WriteLine(item.Id); } Console.ReadLine(); } } public class Currency { public Guid Id { get; set; } public string Name { get; set; } }}

 

转载于:https://www.cnblogs.com/51net/p/4539791.html

你可能感兴趣的文章
jquery自动生成二维码
查看>>
spring回滚数据
查看>>
新浪分享API应用的开发
查看>>
美国专利
查看>>
【JavaScript】Write和Writeln的区别
查看>>
百度编辑器图片在线流量返回url改动
查看>>
我对你的期望有点过了
查看>>
微信小程序wx:key以及wx:key=" *this"详解:
查看>>
下拉框比较符
查看>>
2.2.5 因子的使用
查看>>
css选择器
查看>>
photoplus
查看>>
Python 拓展之推导式
查看>>
[Leetcode] DP-- 474. Ones and Zeroes
查看>>
80X86寄存器详解<转载>
查看>>
c# aop讲解
查看>>
iterable与iterator
查看>>
返回顶部(动画)
查看>>
webpack+react+antd 单页面应用实例
查看>>
Confluence 6 SQL Server 数据库驱动修改
查看>>