gpt4 book ai didi

c# - 在 C# 中,将接口(interface)列表转换为对象列表的推荐方法是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 17:30:33 25 4
gpt4 key购买 nike

我有返回的代码和 IVehicle 接口(interface)数组

  IEnumerable<IVehicle> allVehicles = GetAllVehicles();

我知道所有这些对象都是 Car 对象。什么是正确的施法方式
IEnumerable<IVehicle>


IEnumerable<Car>

因为我需要将这些传递给另一个需要 <Enumerable<Car> 的函数

最佳答案

你可以像这样转换它:

var allCars = allVehicles.Cast<Car>();

关于c# - 在 C# 中,将接口(interface)列表转换为对象列表的推荐方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33920222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com