gpt4 book ai didi

c# - 将 System.Array 转换为字符串 []

转载 作者:IT王子 更新时间:2023-10-29 03:57:19 30 4
gpt4 key购买 nike

我有一个 System.Array,我需要将其转换为字符串 []。有没有比循环遍历数组、对每个元素调用 ToString 并保存到 string[] 更好的方法呢?问题是在运行时之前我不一定知道元素的类型。

最佳答案

使用 LINQ 怎么样?

string[] foo = someObjectArray.OfType<object>().Select(o => o.ToString()).ToArray();

关于c# - 将 System.Array 转换为字符串 [],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1970738/

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