Convert Listlt;DerivedClassgt; to Listlt;BaseClassgt;(转换列表lt;DerivedClassgt;列出lt;BaseClassgt;)
问题描述
虽然我们可以从基类/接口继承,但为什么我们不能声明一个 List<>
使用相同的类/接口?
While we can inherit from base class/interface, why can't we declare a List<>
using same class/interface?
interface A
{ }
class B : A
{ }
class C : B
{ }
class Test
{
static void Main(string[] args)
{
A a = new C(); // OK
List<A> listOfA = new List<C>(); // compiler Error
}
}
有办法吗?
推荐答案
完成这项工作的方法是遍历列表并转换元素.这可以使用 ConvertAll 来完成:
The way to make this work is to iterate over the list and cast the elements. This can be done using ConvertAll:
List<A> listOfA = new List<C>().ConvertAll(x => (A)x);
你也可以使用 Linq:
You could also use Linq:
List<A> listOfA = new List<C>().Cast<A>().ToList();
这篇关于转换列表<DerivedClass>列出<BaseClass>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:转换列表<DerivedClass>列出<BaseClass>


基础教程推荐
- 将 XML 转换为通用列表 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30