gpt4 book ai didi

c# - 如何在 C# 中提取对象类型数组的元素?

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

我有一个包含任何类型数组的对象(不是修道院已知类型。所以我不能在代码中进行简单的转换,因为我可以在运行时确定类型!)。如何提取数组的内容?例如:

int[] array = new int[] { 0, 1, 2 };
object obj=array;
...
//Here I know that obj is an array (<b>of a priory unknown type and I cannot use type conversion in the code </b>
//How can extract elements of obj and use them, e.g. write them on the screen?`

最佳答案

数组是一个 IEnumerable<T>,使用协方差 IEnumerable<object> .这意味着任何数组都是IEnumerable<object>.

int[] array = new int[] { 0, 1, 2 };
object obj=array;
IEnumerable<object> collection = (IEnumerable<object>)obj;

foreach (object item in collection)
{
Console.WriteLine(item.ToString());
}

关于c# - 如何在 C# 中提取对象类型数组的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7107668/

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