列表.在 Metro 应用中查找方法
我想知道为什么在 C# 中创建 Metro 应用程序时 List
不可用。它仍然存在于 .NET Framework 4.5(Windows 窗体、WPF)中,但不在 Metro 风格应用程序中。是否有替代方法或者只是没有查找方法?
I'm wondering why List<T>.Find
is not available when creating a Metro application in C#. It's still in .NET Framework 4.5 (Windows Forms, WPF) but not in Metro style applications. Is there an alternative or is there just not going to be a find method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 MSFT 做出的选择。只需使用 Linq 的
FirstOrDefault
或SingleOrDefault
。听起来他们确实做了很多清理工作......
Its a choice MSFT made. Just use Linq's
FirstOrDefault
orSingleOrDefault
.It surely sounds like they are doing a lot of cleanup...