• <small id='EHs3F'></small><noframes id='EHs3F'>

    <tfoot id='EHs3F'></tfoot>

    1. <i id='EHs3F'><tr id='EHs3F'><dt id='EHs3F'><q id='EHs3F'><span id='EHs3F'><b id='EHs3F'><form id='EHs3F'><ins id='EHs3F'></ins><ul id='EHs3F'></ul><sub id='EHs3F'></sub></form><legend id='EHs3F'></legend><bdo id='EHs3F'><pre id='EHs3F'><center id='EHs3F'></center></pre></bdo></b><th id='EHs3F'></th></span></q></dt></tr></i><div id='EHs3F'><tfoot id='EHs3F'></tfoot><dl id='EHs3F'><fieldset id='EHs3F'></fieldset></dl></div>
    2. <legend id='EHs3F'><style id='EHs3F'><dir id='EHs3F'><q id='EHs3F'></q></dir></style></legend>

        • <bdo id='EHs3F'></bdo><ul id='EHs3F'></ul>

        如何按顺序将项目插入列表?

        时间:2023-06-05

          1. <tfoot id='VlRXx'></tfoot>

            <small id='VlRXx'></small><noframes id='VlRXx'>

            <i id='VlRXx'><tr id='VlRXx'><dt id='VlRXx'><q id='VlRXx'><span id='VlRXx'><b id='VlRXx'><form id='VlRXx'><ins id='VlRXx'></ins><ul id='VlRXx'></ul><sub id='VlRXx'></sub></form><legend id='VlRXx'></legend><bdo id='VlRXx'><pre id='VlRXx'><center id='VlRXx'></center></pre></bdo></b><th id='VlRXx'></th></span></q></dt></tr></i><div id='VlRXx'><tfoot id='VlRXx'></tfoot><dl id='VlRXx'><fieldset id='VlRXx'></fieldset></dl></div>
                <bdo id='VlRXx'></bdo><ul id='VlRXx'></ul>
                • <legend id='VlRXx'><style id='VlRXx'><dir id='VlRXx'><q id='VlRXx'></q></dir></style></legend>
                    <tbody id='VlRXx'></tbody>

                • 本文介绍了如何按顺序将项目插入列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我有一个 DateTimeOffset 对象列表,我想将新对象按顺序插入到列表中.

                  I have a List of DateTimeOffset objects, and I want to insert new ones into the list in order.

                  List<DateTimeOffset> TimeList = ...
                  // determine the order before insert or add the new item
                  

                  抱歉,需要更新我的问题.

                  Sorry, need to update my question.

                  List<customizedClass> ItemList = ...
                  //customizedClass contains DateTimeOffset object and other strings, int, etc.
                  
                  ItemList.Sort();    // this won't work until set data comparison with DateTimeOffset
                  ItemList.OrderBy(); // this won't work until set data comparison with DateTimeOffset
                  

                  另外,如何将DateTimeOffset作为.OrderBy()的参数?

                  Also, how to put DateTimeOffset as the parameter of .OrderBy()?

                  我也试过了:

                  ItemList = from s in ItemList
                             orderby s.PublishDate descending    // .PublishDate is type DateTime
                             select s;
                  

                  但是,它会返回此错误消息,

                  However, it returns this error message,

                  无法将类型System.Linq.IOrderedEnumerable"隐式转换为System.Collections.Gerneric.List".存在显式转换(您是否缺少演员表?)

                  Cannot implicitly convert type 'System.Linq.IOrderedEnumerable' to 'System.Collections.Gerneric.List'. An explicit conversion exist (are you missing a cast?)

                  推荐答案

                  修改你的LINQ,在末尾添加ToList():

                  Modify your LINQ, add ToList() at the end:

                  ItemList = (from s in ItemList
                              orderby s.PublishDate descending   
                              select s).ToList();
                  

                  或者将排序后的列表分配给另一个变量

                  Alternatively assign the sorted list to another variable

                  var sortedList = from s in ....
                  

                  这篇关于如何按顺序将项目插入列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用 c# 驱动程序将字典插入 MongoDB 下一篇:将元素插入到MongoDB中的嵌套数组中

                  相关文章

                  最新文章

                  <i id='Jh0vn'><tr id='Jh0vn'><dt id='Jh0vn'><q id='Jh0vn'><span id='Jh0vn'><b id='Jh0vn'><form id='Jh0vn'><ins id='Jh0vn'></ins><ul id='Jh0vn'></ul><sub id='Jh0vn'></sub></form><legend id='Jh0vn'></legend><bdo id='Jh0vn'><pre id='Jh0vn'><center id='Jh0vn'></center></pre></bdo></b><th id='Jh0vn'></th></span></q></dt></tr></i><div id='Jh0vn'><tfoot id='Jh0vn'></tfoot><dl id='Jh0vn'><fieldset id='Jh0vn'></fieldset></dl></div>
                    <bdo id='Jh0vn'></bdo><ul id='Jh0vn'></ul>
                  <legend id='Jh0vn'><style id='Jh0vn'><dir id='Jh0vn'><q id='Jh0vn'></q></dir></style></legend>

                  <small id='Jh0vn'></small><noframes id='Jh0vn'>

                  1. <tfoot id='Jh0vn'></tfoot>