|
Hi, I want to sort the my messages by date. SO the newest email must show at the top. How can I do this? I am using the following code. Pop3 client = new Pop3(); client.Connect("pop.gmail.com",995,null, Pop3Security.Implicit);
|
|
Hi, if you are using .NET 3.5 or later you can do it by using LINQ extension method OrderBy() or OrderByDescending(), so your code will now like this:
|