C# 转换列表列出<短>短>
我想这样做:
List<ushort> uList = new List<ushort>() { 1, 2, 3 };
List<short> sList = uList.Cast<short>().ToList();
但我得到 InvalidCastException“指定的强制转换无效。”
如何快速高效地铸造上述集合?
I want to do this:
List<ushort> uList = new List<ushort>() { 1, 2, 3 };
List<short> sList = uList.Cast<short>().ToList();
but I get InvalidCastException "Specified cast is not valid."
How can I cast fast and efficient the above collection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 ConvertAll:
You could use ConvertAll: