C#集合总是强制执行订单吗?
IE如果我想从数组中选择,生成的IEnumerable
对象是否必然按顺序排列?
public class Student { public string FullName, ... } public class School { public string Name, public Student[] Students, ... } public void StudentListWork(School thisSchool) { IEnumerable StudentNames = thisSchool.Students.Select(student => student.FullName); // IS StudentNames GUARANTEED TO BE IN THE SAME ORDER AS thisSchool.Students? }
谢谢!
是的,在这种情况下:
但是,有些馆藏不保留订单。 特别是:
上述就是C#学习教程:C#集合总是强制执行订单吗?分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)!
本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。
ctvol管理联系方式QQ:251552304
本文章地址:https://www.ctvol.com/cdevelopment/1008796.html