转换泛型 IList排列?
我有一个包含自定义类型的 IList。该自定义类型的属性之一称为ID。在不使用 for 循环的情况下如何转换它?该数组不应该是CustomType,但如果是ID类型,即int。
谢谢!
I have an IList which contains a custom type. One of the properties of that custom type is called ID. How could I convert that without using a for loop? The array should not be of the CustomType, but if the type of ID, which is int.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
sourceList.Select(i => i.ID).ToArray();
其中
sourceList
是IList类型的列表。
代码>Try:
sourceList.Select(i => i.ID).ToArray();
Where
sourceList
is your list of typeIList<CustomType>.