C# 将 Reflection.propertyinfo 转换为 Generic.List<>

发布于 2024-10-15 23:58:47 字数 62 浏览 1 评论 0 原文

如何将 Reflection.propertyinfo[] 转换为 generic.list<>?

How do I go about converting a reflection.propertyinfo[] to a generic.list<>?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

雨夜星沙 2024-10-22 23:58:47

List 构造函数之一接受 IEnumerable 作为其参数(即您的 PropertyInfo 数组):

var list = new List<PropertyInfo>( propInfoArray );

One of the List<T> constructors accepts an IEnumerable<T> as its argument (i.e., your PropertyInfo array):

var list = new List<PropertyInfo>( propInfoArray );
雅心素梦 2024-10-22 23:58:47
var list = yourArray.ToList();
var list = yourArray.ToList();
忆悲凉 2024-10-22 23:58:47

以上所有内容都是正确的。但还应该提到的是,与 List 一样,所有 .net 数组都实现 IList

  var IList<PropertyInfo> ilist = reflection.propertyinfo;

据我所知,当我需要类似列表的集合时,几乎所有函数都接受 IList ,我可以将其与传统数组和列表一起使用。

All of the above are correct. But it should also be mentioned that, like List<T> all .net arrays implement IList<T>.

  var IList<PropertyInfo> ilist = reflection.propertyinfo;

Since I know that, almost all my functions accept IList<T> when I need a list-like collection, which I can use with traditional arrays and lists.

橘亓 2024-10-22 23:58:47

使用 System.Linq 命名空间中提供的扩展方法 ToList()

var myProperties = propertyInfoArray.ToList();

Use the extension method ToList() available in the System.Linq namespace:

var myProperties = propertyInfoArray.ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文