gpt4 book ai didi

c# - 在 C# 中转换数据类型

转载 作者:行者123 更新时间:2023-11-30 13:27:58 26 4
gpt4 key购买 nike

这是我的 C# 类:

public class myClass {

// Some properties irrelevant to the question

public List<someObject> ListOfStuff { get; set; }
}


public class someObject {

public string Id { get; set; }

public string Name { get; set; }
}

问题:是否可以将所有Id 提取到一个单独的数组中,将所有Name 提取到另一个单独的数组中?

例如,像这样的东西:

 myClass foo;
// Populate foo...
List<string> names = foo.ListOfStuff( what goes here? );

最佳答案

您可以使用 Select 来做到这一点LINQ的方法:

List<string> names = foo.ListOfStuff.Select(x => x.Name).ToList<string>();
List<string> ids = foo.ListOfStuff.Select(x => x.Id).ToList<string>();

关于c# - 在 C# 中转换数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8189086/

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