<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Listbox data sorting C# in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282330#M16549</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get data from another button into the listbox.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;related code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt; 
                List&amp;lt;string&amp;gt; allText = new List&amp;lt;string&amp;gt;();
                using (var ts = Adb.HostApplicationServices.WorkingDatabase.TransactionManager.StartTransaction())
                {
                    Type type;

                    foreach (var id in allTextIDs)
                    {

                        var dbObj = id.GetObject(Adb.OpenMode.ForRead);
                        type = dbObj.GetType();
                        if (type.Equals(typeof(Adb.DBText)))
                        {

                            if (chcbPoz.Checked)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to do this on another button. the reason is I need both lists ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In other words, after getting into the listbox, we have to sort with the "btnSirala" button.&lt;/P&gt;</description>
    <pubDate>Fri, 30 Apr 2021 17:56:16 GMT</pubDate>
    <dc:creator>k005</dc:creator>
    <dc:date>2021-04-30T17:56:16Z</dc:date>
    <item>
      <title>Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10281927#M16545</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I sort the data in the listbox from the smallest diameter to the largest?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sample:&lt;BR /&gt;listbox content:&lt;BR /&gt;1 25ø16 / 15 L = 300&lt;BR /&gt;2 30ø16 L = 620&lt;BR /&gt;3 14ø20 L = 330&lt;BR /&gt;4 80ø16 / 15 L = 429&lt;BR /&gt;5 120ø8 L = 181&lt;BR /&gt;6 25ø10 L = 140&lt;BR /&gt;7 25ø20 L = 561&lt;BR /&gt;8 25ø20 L = 398&lt;BR /&gt;9 15ø10 L = 140&lt;BR /&gt;----------------------------&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;the desired listbox content:&lt;BR /&gt;5 120ø8 L = 181&lt;BR /&gt;6 25ø10 L = 140&lt;BR /&gt;9 15ø10 L = 140&lt;BR /&gt;1 25ø16 / 15 L = 300&lt;BR /&gt;4 80ø16 / 15 L = 429&lt;BR /&gt;2 30ø16 L = 620&lt;BR /&gt;3 14ø20 L = 330&lt;BR /&gt;7 25ø20 L = 561&lt;BR /&gt;8 25ø20 L = 398&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;that is, our reference is the two-digit or one-digit value to ø and its right.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 15:28:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10281927#M16545</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2021-04-30T15:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10281997#M16546</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You can use Regex ans Linq.&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;using System.Linq;
using System.Text.RegularExpressions;

    // ...
    list.OrderBy(s =&amp;gt; int.Parse(Regex.Match(s, @"ø(\d+)").Groups[1].Value))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 15:59:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10281997#M16546</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-04-30T15:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282021#M16547</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it that way?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt; private void btnSirala_Click(object sender, EventArgs e)
        {
            listBox1.OrderBy(s =&amp;gt; int.Parse(Regex.Match(s, @"ø(\d+)").Groups[1].Value))
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 16:11:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282021#M16547</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2021-04-30T16:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282282#M16548</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/537692"&gt;@k005&lt;/a&gt;&amp;nbsp; a écrit&amp;nbsp;:&lt;BR /&gt;
&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it that way?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt; private void btnSirala_Click(object sender, EventArgs e)
        {
            listBox1.OrderBy(s =&amp;gt; int.Parse(Regex.Match(s, @"ø(\d+)").Groups[1].Value))
        }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I hope not. &lt;BR /&gt;What is listbox1? I guess an instance of System.Windows.Forms.ListBox. If I'm right, the ListBox class does not implement IEnumerable&amp;lt;string&amp;gt;.&lt;/P&gt;
&lt;P&gt;How do you get this collection of strings? What is the type of this collection ? Does this type implements IEnumerable&amp;lt;string&amp;gt; ?&amp;nbsp; This is mandatory to use the Linq extension methods.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 17:38:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282282#M16548</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-04-30T17:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282330#M16549</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get data from another button into the listbox.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;related code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt; 
                List&amp;lt;string&amp;gt; allText = new List&amp;lt;string&amp;gt;();
                using (var ts = Adb.HostApplicationServices.WorkingDatabase.TransactionManager.StartTransaction())
                {
                    Type type;

                    foreach (var id in allTextIDs)
                    {

                        var dbObj = id.GetObject(Adb.OpenMode.ForRead);
                        type = dbObj.GetType();
                        if (type.Equals(typeof(Adb.DBText)))
                        {

                            if (chcbPoz.Checked)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to do this on another button. the reason is I need both lists ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In other words, after getting into the listbox, we have to sort with the "btnSirala" button.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 17:56:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282330#M16549</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2021-04-30T17:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282449#M16550</link>
      <description>&lt;P&gt;Sorry I do not understand what you're trying to achieve.&lt;/P&gt;
&lt;P&gt;You just have to learn/undertsand that&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;you can use the OrderBy Linq extension with objects which type implements IEnumerable&amp;lt;string&amp;gt; (as List&amp;lt;string&amp;gt; or string[])&lt;/LI&gt;
&lt;LI&gt;you can fill the ListBox.Items with this kind of objects&lt;/LI&gt;
&lt;LI&gt;The ListBox.Items type is ObjectCollection and can be casted into an IEnumerable&amp;lt;&amp;lt;string&amp;gt; using ListBox.Items.Cast&amp;lt;stirng&amp;gt;()&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 30 Apr 2021 18:40:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282449#M16550</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-04-30T18:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282494#M16551</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OK. The situation is a little confused for me.&lt;/P&gt;&lt;P&gt;I am unfamiliar with these terms for the time being.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just want to sort the data in the current listbox. According to the reference I mentioned. I want to do this with the button called "btnSirala". Is this too complicated?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The current listbox view is attached.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 18:57:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282494#M16551</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2021-04-30T18:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282695#M16552</link>
      <description>&lt;P&gt;You have to get the items from the list box, cast the collection into an IEnumerable&amp;lt;string&amp;gt;, sort it with OrderBy, clear the list box items and re-fill it with the sorted IEnumerable&amp;lt;string&amp;gt;.&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;        private void btnSirala_Click(object sender, EventArgs e)
        {
            var items = listBox1.Items
                .Cast&amp;lt;string&amp;gt;()
                .OrderBy(s =&amp;gt; int.Parse(Regex.Match(s, @"ø(\d+)").Groups[1].Value))
                .ToArray();
            listBox1.Items.Clear();
            listBox1.Items.AddRange(items);
        }&lt;/LI-CODE&gt;
&lt;P&gt;You won't learn anything if you're still waiting for someone to write the code for you. These are the basics of Windows forms that have nothing to do with the AutoCAD .NET API.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 20:29:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10282695#M16552</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-04-30T20:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10283286#M16553</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;//
You won't learn anything if you're still waiting for someone to write the code for you. These are the basics of Windows forms that have nothing to do with the AutoCAD .NET API.
//&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First of all, let's make one thing clear:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been writing questions on the Forum for about 3-4 months. and I learned a lot. Yes, there are shortcomings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to complete.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For me, I don't expect anyone to write the code, including you. I'm trying to learn from the Answers given.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is a problem for you and anyone else, you may not be able to write an answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Also, the solution with the last code you sent has not been approved by me yet. It gives an error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 May 2021 06:02:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10283286#M16553</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2021-05-01T06:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10283476#M16554</link>
      <description>&lt;P&gt;You didn't say you use a DataSource for the list box as said in the error message. If so, try:&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;        private void btnSirala_Click(object sender, EventArgs e)
        {
            listBox1.DataSource = ((IList)listBox1.DataSource)
                .Cast&amp;lt;string&amp;gt;()
                .OrderBy(s =&amp;gt; int.Parse(Regex.Match(s, @"ø(\d+)").Groups[1].Value))
                .ToArray();
        }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 May 2021 09:12:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10283476#M16554</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-05-01T09:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10283502#M16555</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much. All right. &lt;span class="lia-unicode-emoji" title=":hugging_face:"&gt;🤗&lt;/span&gt;&lt;/P&gt;&lt;P&gt;* I just added a little code ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;listBox1.DataSource = ((System.Collections.IList)listBox1.DataSource)&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 01 May 2021 09:33:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10283502#M16555</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2021-05-01T09:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10987095#M16556</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I get &lt;STRONG&gt;L=xxx&lt;/STRONG&gt; lengths with the same diameter(ø) values to be sorted here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so how should I change the orderBy?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;the desired listbox content:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5 120ø8 L = 181&lt;BR /&gt;6 25ø10 L = 140&lt;BR /&gt;9 15ø10 L = 140&lt;BR /&gt;1 25ø16 / 15 L = 300&lt;BR /&gt;4 80ø16 / 15 L = 429&lt;BR /&gt;2 30ø16 L = 620&lt;BR /&gt;3 14ø20 L = 330&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;8 25ø20 L = 398&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;7 25ø20 L = 561&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Mar 2022 17:40:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/10987095#M16556</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2022-03-06T17:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/11004780#M16557</link>
      <description>&lt;P&gt;Instead of using listbox , try using DataGridView control. If your original data is parsed (e.g. first row of the data has entries 5, 120,&amp;nbsp;&lt;SPAN&gt;8, 181), I assume most likely it is, you can easily populate these entries into the DataGridView and can be programmatically&amp;nbsp;sorted in the order of your choice.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have just started learning Forms in C#. I will be able to provide you with the solution at a future date in line with my assumption above.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Have fun,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Nimish&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 21:35:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/11004780#M16557</guid>
      <dc:creator>parikhnidi</dc:creator>
      <dc:date>2022-03-14T21:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox data sorting C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/11005433#M16558</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With Datagridview, of course. But the path I will follow is through Listbox. The reason is by design of the program I am making.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I just started learning. The way I learn is usually with code examples. But there are those who misinterpret this situation... No problem. I will continue. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 06:39:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/listbox-data-sorting-c/m-p/11005433#M16558</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2022-03-15T06:39:32Z</dc:date>
    </item>
  </channel>
</rss>

